(Fdocumentation_property): Remove GCPRO because
authorGerd Moellmann <gerd@gnu.org>
Fri, 12 Nov 1999 12:50:54 +0000 (12:50 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 12 Nov 1999 12:50:54 +0000 (12:50 +0000)
Fsubstitute_command_keys gcpro's the string.

src/doc.c

index 9564646..c9da13a 100644 (file)
--- 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;
 }
 \f