From: Gerd Moellmann Date: Tue, 2 Nov 1999 23:18:05 +0000 (+0000) Subject: (Fdocumentation_property): Fix bug bypassing UNGCPRO. X-Git-Tag: emacs-pretest-21.0.90~6200 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9e56fc95cc30cf80487cc1dbfb03f08e3ceaeed4;p=emacs.git (Fdocumentation_property): Fix bug bypassing UNGCPRO. --- diff --git a/src/doc.c b/src/doc.c index 43785510597..9564646c5bb 100644 --- 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;