Mercurial > emacs
changeset 26075:7e291e8e2b11
(Fdocumentation_property): Gcpro `tem'.
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 18 Oct 1999 14:00:19 +0000 |
parents | d04d84cab43b |
children | edbfca66058d |
files | src/doc.c |
diffstat | 1 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/doc.c Mon Oct 18 02:30:08 1999 +0000 +++ b/src/doc.c Mon Oct 18 14:00:19 1999 +0000 @@ -400,7 +400,13 @@ 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; }