From: Gerd Moellmann Date: Fri, 12 Nov 1999 12:50:54 +0000 (+0000) Subject: (Fdocumentation_property): Remove GCPRO because X-Git-Tag: emacs-pretest-21.0.90~6117 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bbd7d5d3edb2da826f4e425717fe7b3d026cb13f;p=emacs.git (Fdocumentation_property): Remove GCPRO because Fsubstitute_command_keys gcpro's the string. --- diff --git a/src/doc.c b/src/doc.c index 9564646c5bb..c9da13ab769 100644 --- a/src/doc.c +++ b/src/doc.c @@ -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; }