diff options
author | Dave Love <fx@gnu.org> | 1999-11-16 18:24:17 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 1999-11-16 18:24:17 +0000 |
commit | 441d75e5ce3db79376731baea8ced739fe35fa6c (patch) | |
tree | 94624dcaff753e7fa59d645528cd086ca91a3d04 | |
parent | e35b612304a6a02d03b27e8b80adc17fc54a7fa5 (diff) | |
download | emacs-441d75e5ce3db79376731baea8ced739fe35fa6c.tar.gz emacs-441d75e5ce3db79376731baea8ced739fe35fa6c.tar.bz2 emacs-441d75e5ce3db79376731baea8ced739fe35fa6c.zip |
(Fdocumentation): Remove gcpro here too.
-rw-r--r-- | src/doc.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/doc.c b/src/doc.c index c9da13ab769..7792fcb25ca 100644 --- a/src/doc.c +++ b/src/doc.c @@ -373,13 +373,7 @@ string is passed through `substitute-command-keys'.") } if (NILP (raw)) - { - struct gcpro gcpro1; - - GCPRO1 (doc); - doc = Fsubstitute_command_keys (doc); - UNGCPRO; - } + doc = Fsubstitute_command_keys (doc); return doc; } |