]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fdocumentation): Remove gcpro here too.
authorDave Love <fx@gnu.org>
Tue, 16 Nov 1999 18:24:17 +0000 (18:24 +0000)
committerDave Love <fx@gnu.org>
Tue, 16 Nov 1999 18:24:17 +0000 (18:24 +0000)
src/doc.c

index c9da13ab769b2c48532b84bd6609525fa26572f1..7792fcb25ca2684361c05a810130d61f9e0b934c 100644 (file)
--- 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;
 }