diff options
author | Phillip Rulon <pjr@gnu.org> | 1999-10-10 01:39:53 +0000 |
---|---|---|
committer | Phillip Rulon <pjr@gnu.org> | 1999-10-10 01:39:53 +0000 |
commit | a04f1a93c6f08aef3c8736322e24cbf67d3ad842 (patch) | |
tree | 684f0572fbe0ad8c22a1b681c1756c01c3e4e052 /src/keymap.c | |
parent | 3f4c23f9845ea6d8cdb9b9a0ed4e5641704d9f42 (diff) | |
download | emacs-a04f1a93c6f08aef3c8736322e24cbf67d3ad842.tar.gz |
(Fsingle_key_description): Make tem big enough.
(describe_buffer_bindings): Make buf big enough.
Diffstat (limited to 'src/keymap.c')
-rw-r--r-- | src/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keymap.c b/src/keymap.c index 9216fc498f4..e20e4fd79a9 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -1952,7 +1952,7 @@ Control characters turn into C-whatever, etc.") } else { - char tem[20]; + char tem[30]; *push_key_description (XUINT (key), tem) = 0; return build_string (tem); @@ -2423,7 +2423,7 @@ You type Translation\n\ for (c = 0; c < translate_len; c++) if (translate[c] != c) { - char buf[20]; + char buf[30]; char *bufend; if (alternate_heading) |