]> git.eshelyaron.com Git - emacs.git/commitdiff
(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 9564646c5bbe10b215adfcdef181e4b8d8537284..c9da13ab769b2c48532b84bd6609525fa26572f1 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