]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fdocumentation_property): Fix bug bypassing UNGCPRO.
authorGerd Moellmann <gerd@gnu.org>
Tue, 2 Nov 1999 23:18:05 +0000 (23:18 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 2 Nov 1999 23:18:05 +0000 (23:18 +0000)
src/doc.c

index 43785510597429171c74e26af3b504891e255c65..9564646c5bbe10b215adfcdef181e4b8d8537284 100644 (file)
--- a/src/doc.c
+++ b/src/doc.c
@@ -404,7 +404,7 @@ translation.")
       struct gcpro gcpro1;
 
       GCPRO1 (tem);
-      return Fsubstitute_command_keys (tem);
+      tem = Fsubstitute_command_keys (tem);
       UNGCPRO;
     }
   return tem;