From: Karl Heuer Date: Wed, 8 Apr 1998 06:43:52 +0000 (+0000) Subject: (describe_command): Use quotes around symbol name. X-Git-Tag: emacs-20.3~1662 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e13608fb0515d989196f14a93a21d81a41ae801f;p=emacs.git (describe_command): Use quotes around symbol name. --- diff --git a/src/keymap.c b/src/keymap.c index 7467b49ace0..04d2bb28d5f 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -2592,8 +2592,9 @@ describe_command (definition) if (SYMBOLP (definition)) { XSETSTRING (tem1, XSYMBOL (definition)->name); + insert_string ("`"); insert1 (tem1); - insert_string ("\n"); + insert_string ("'\n"); } else if (STRINGP (definition) || VECTORP (definition)) insert_string ("Keyboard Macro\n");