diff src/doc.c @ 26471:b1863c0b8f9c

(Fdocumentation): Remove gcpro here too.
author Dave Love <fx@gnu.org>
date Tue, 16 Nov 1999 18:24:17 +0000
parents 00b7d6135be4
children 60c820c7f330
line wrap: on
line diff
--- a/src/doc.c	Tue Nov 16 15:55:07 1999 +0000
+++ b/src/doc.c	Tue Nov 16 18:24:17 1999 +0000
@@ -373,13 +373,7 @@
     }
 
   if (NILP (raw))
-    {
-      struct gcpro gcpro1;
-
-      GCPRO1 (doc);
-      doc = Fsubstitute_command_keys (doc);
-      UNGCPRO;
-    }
+    doc = Fsubstitute_command_keys (doc);
   return doc;
 }