From bbd7d5d3edb2da826f4e425717fe7b3d026cb13f Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Fri, 12 Nov 1999 12:50:54 +0000 Subject: [PATCH] (Fdocumentation_property): Remove GCPRO because Fsubstitute_command_keys gcpro's the string. --- src/doc.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/doc.c b/src/doc.c index 9564646c5bb..c9da13ab769 100644 --- a/src/doc.c +++ b/src/doc.c @@ -400,13 +400,7 @@ translation.") else if (CONSP (tem)) tem = get_doc_string (tem, 0, 0); if (NILP (raw) && STRINGP (tem)) - { - struct gcpro gcpro1; - - GCPRO1 (tem); - tem = Fsubstitute_command_keys (tem); - UNGCPRO; - } + tem = Fsubstitute_command_keys (tem); return tem; } -- 2.39.5