# HG changeset patch # User Dave Love # Date 940255219 0 # Node ID 7e291e8e2b11ad42d5db8febbf9472cc3af892c1 # Parent d04d84cab43b9a48a1f095d2c734deb0e04b6801 (Fdocumentation_property): Gcpro `tem'. diff -r d04d84cab43b -r 7e291e8e2b11 src/doc.c --- 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; }