1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-18 08:51:45 -08:00

(Fdocumentation): Remove gcpro here too.

This commit is contained in:
Dave Love 1999-11-16 18:24:17 +00:00
parent e35b612304
commit 441d75e5ce

View file

@ -373,13 +373,7 @@ string is passed through `substitute-command-keys'.")
}
if (NILP (raw))
{
struct gcpro gcpro1;
GCPRO1 (doc);
doc = Fsubstitute_command_keys (doc);
UNGCPRO;
}
doc = Fsubstitute_command_keys (doc);
return doc;
}