comparison src/keymap.c @ 13343:cc0f24bdfab1

(describe_translation): Insert newline after key description.
author Richard M. Stallman <rms@gnu.org>
date Mon, 30 Oct 1995 19:33:01 +0000
parents 2e0c4159e94b
children 28790743a5a3
comparison
equal deleted inserted replaced
13342:f68eab5a63d2 13343:cc0f24bdfab1
2115 XSETSTRING (tem1, XSYMBOL (definition)->name); 2115 XSETSTRING (tem1, XSYMBOL (definition)->name);
2116 insert1 (tem1); 2116 insert1 (tem1);
2117 insert_string ("\n"); 2117 insert_string ("\n");
2118 } 2118 }
2119 else if (STRINGP (definition) || VECTORP (definition)) 2119 else if (STRINGP (definition) || VECTORP (definition))
2120 insert1 (Fkey_description (definition)); 2120 {
2121 insert1 (Fkey_description (definition));
2122 insert_string ("\n");
2123 }
2121 else 2124 else
2122 { 2125 {
2123 tem1 = Fkeymapp (definition); 2126 tem1 = Fkeymapp (definition);
2124 if (!NILP (tem1)) 2127 if (!NILP (tem1))
2125 insert_string ("Prefix Command\n"); 2128 insert_string ("Prefix Command\n");