changeset 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 9991cb6f664a
children a89f2624e1eb
files src/doc.c
diffstat 1 files changed, 1 insertions(+), 7 deletions(-) [+]
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;
 }