aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/doc.c8
1 files changed, 1 insertions, 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.")
400 else if (CONSP (tem)) 400 else if (CONSP (tem))
401 tem = get_doc_string (tem, 0, 0); 401 tem = get_doc_string (tem, 0, 0);
402 if (NILP (raw) && STRINGP (tem)) 402 if (NILP (raw) && STRINGP (tem))
403 { 403 tem = Fsubstitute_command_keys (tem);
404 struct gcpro gcpro1;
405
406 GCPRO1 (tem);
407 tem = Fsubstitute_command_keys (tem);
408 UNGCPRO;
409 }
410 return tem; 404 return tem;
411} 405}
412 406