diff src/doc.c @ 26420:00b7d6135be4

(Fdocumentation_property): Remove GCPRO because Fsubstitute_command_keys gcpro's the string.
author Gerd Moellmann <gerd@gnu.org>
date Fri, 12 Nov 1999 12:50:54 +0000
parents fc5dd3bb9922
children b1863c0b8f9c
line wrap: on
line diff
--- a/src/doc.c	Fri Nov 12 12:43:32 1999 +0000
+++ b/src/doc.c	Fri Nov 12 12:50:54 1999 +0000
@@ -400,13 +400,7 @@
   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;
 }