comparison src/keymap.c @ 5367:e4f5f2674f34

(describe_command): If binding is a kbd macro, say so.
author Richard M. Stallman <rms@gnu.org>
date Wed, 29 Dec 1993 07:43:21 +0000
parents bec1126c6c00
children 2b8f405f5103
comparison
equal deleted inserted replaced
5366:9fb443ed4acf 5367:e4f5f2674f34
1890 { 1890 {
1891 XSET (tem1, Lisp_String, XSYMBOL (definition)->name); 1891 XSET (tem1, Lisp_String, XSYMBOL (definition)->name);
1892 insert1 (tem1); 1892 insert1 (tem1);
1893 insert_string ("\n"); 1893 insert_string ("\n");
1894 } 1894 }
1895 else if (STRINGP (definition))
1896 insert_string ("Keyboard Macro\n");
1895 else 1897 else
1896 { 1898 {
1897 tem1 = Fkeymapp (definition); 1899 tem1 = Fkeymapp (definition);
1898 if (!NILP (tem1)) 1900 if (!NILP (tem1))
1899 insert_string ("Prefix Command\n"); 1901 insert_string ("Prefix Command\n");