From 24065b9c3d13281b64f493aed66f9e6a9f606dac Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 29 Dec 1993 07:43:21 +0000 Subject: [PATCH] (describe_command): If binding is a kbd macro, say so. --- src/keymap.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/keymap.c b/src/keymap.c index 10ff9bcab90..d2a2f4f189c 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -1892,6 +1892,8 @@ describe_command (definition) insert1 (tem1); insert_string ("\n"); } + else if (STRINGP (definition)) + insert_string ("Keyboard Macro\n"); else { tem1 = Fkeymapp (definition); -- 2.39.5