comparison src/doc.c @ 26317:fc5dd3bb9922

(Fdocumentation_property): Fix bug bypassing UNGCPRO.
author Gerd Moellmann <gerd@gnu.org>
date Tue, 02 Nov 1999 23:18:05 +0000
parents b7aa6ac26872
children 00b7d6135be4
comparison
equal deleted inserted replaced
26316:c3730cef09b2 26317:fc5dd3bb9922
402 if (NILP (raw) && STRINGP (tem)) 402 if (NILP (raw) && STRINGP (tem))
403 { 403 {
404 struct gcpro gcpro1; 404 struct gcpro gcpro1;
405 405
406 GCPRO1 (tem); 406 GCPRO1 (tem);
407 return Fsubstitute_command_keys (tem); 407 tem = Fsubstitute_command_keys (tem);
408 UNGCPRO; 408 UNGCPRO;
409 } 409 }
410 return tem; 410 return tem;
411 } 411 }
412 412