From: Dave Love Date: Mon, 18 Oct 1999 14:00:19 +0000 (+0000) Subject: (Fdocumentation_property): Gcpro `tem'. X-Git-Tag: emacs-pretest-21.0.90~6395 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=54f696ea5e9b3bd6964ae35e463478f62ae1fadf;p=emacs.git (Fdocumentation_property): Gcpro `tem'. --- diff --git a/src/doc.c b/src/doc.c index dc52e713da4..02d0b5869b5 100644 --- a/src/doc.c +++ b/src/doc.c @@ -400,7 +400,13 @@ translation.") else if (CONSP (tem)) tem = get_doc_string (tem, 0, 0); if (NILP (raw) && STRINGP (tem)) - return Fsubstitute_command_keys (tem); + { + struct gcpro gcpro1; + + GCPRO1 (tem); + return Fsubstitute_command_keys (tem); + UNGCPRO; + } return tem; }