From: Dave Love Date: Tue, 16 Nov 1999 18:24:17 +0000 (+0000) Subject: (Fdocumentation): Remove gcpro here too. X-Git-Tag: emacs-pretest-21.0.90~6079 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=441d75e5ce3db79376731baea8ced739fe35fa6c;p=emacs.git (Fdocumentation): Remove gcpro here too. --- diff --git a/src/doc.c b/src/doc.c index c9da13ab769..7792fcb25ca 100644 --- a/src/doc.c +++ b/src/doc.c @@ -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; }