1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-25 23:10:47 -08:00

(Fdocumentation_property): Remove GCPRO because

Fsubstitute_command_keys gcpro's the string.
This commit is contained in:
Gerd Moellmann 1999-11-12 12:50:54 +00:00
parent 1a4280fb47
commit bbd7d5d3ed

View file

@ -400,13 +400,7 @@ translation.")
else if (CONSP (tem))
tem = get_doc_string (tem, 0, 0);
if (NILP (raw) && STRINGP (tem))
{
struct gcpro gcpro1;
GCPRO1 (tem);
tem = Fsubstitute_command_keys (tem);
UNGCPRO;
}
tem = Fsubstitute_command_keys (tem);
return tem;
}