# HG changeset patch # User Dave Love # Date 942776657 0 # Node ID b1863c0b8f9c765c039f099ab7920e06fe40d81f # Parent 4d3e6533ede0bf998ed4aac1ded43232007a682c (Fdocumentation): Remove gcpro here too. diff -r 4d3e6533ede0 -r b1863c0b8f9c src/doc.c --- a/src/doc.c Tue Nov 16 15:55:07 1999 +0000 +++ b/src/doc.c Tue Nov 16 18:24:17 1999 +0000 @@ -373,13 +373,7 @@ } if (NILP (raw)) - { - struct gcpro gcpro1; - - GCPRO1 (doc); - doc = Fsubstitute_command_keys (doc); - UNGCPRO; - } + doc = Fsubstitute_command_keys (doc); return doc; }