Mercurial > emacs
diff src/keymap.c @ 25965:a31ee90585ca
(Fsingle_key_description): Make tem big enough.
(describe_buffer_bindings): Make buf big enough.
| author | Phillip Rulon <pjr@gnu.org> |
|---|---|
| date | Sun, 10 Oct 1999 01:37:32 +0000 |
| parents | 0d701c4484e3 |
| children | b7aa6ac26872 |
line wrap: on
line diff
--- a/src/keymap.c Sun Oct 10 01:32:09 1999 +0000 +++ b/src/keymap.c Sun Oct 10 01:37:32 1999 +0000 @@ -1952,7 +1952,7 @@ } else { - char tem[20]; + char tem[30]; *push_key_description (XUINT (key), tem) = 0; return build_string (tem); @@ -2423,7 +2423,7 @@ for (c = 0; c < translate_len; c++) if (translate[c] != c) { - char buf[20]; + char buf[30]; char *bufend; if (alternate_heading)
