aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPhillip Rulon1999-10-10 01:39:53 +0000
committerPhillip Rulon1999-10-10 01:39:53 +0000
commita04f1a93c6f08aef3c8736322e24cbf67d3ad842 (patch)
tree684f0572fbe0ad8c22a1b681c1756c01c3e4e052 /src
parent3f4c23f9845ea6d8cdb9b9a0ed4e5641704d9f42 (diff)
downloademacs-a04f1a93c6f08aef3c8736322e24cbf67d3ad842.tar.gz
emacs-a04f1a93c6f08aef3c8736322e24cbf67d3ad842.zip
(Fsingle_key_description): Make tem big enough.
(describe_buffer_bindings): Make buf big enough.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/keymap.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index fa10ff354d0..7318c21cdf9 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -96,6 +96,11 @@
96 * xdisp.c (resize_mini_window): Do nothing if frame is an X 96 * xdisp.c (resize_mini_window): Do nothing if frame is an X
97 frame that hasn't been initialized yet. 97 frame that hasn't been initialized yet.
98 98
991999-09-28 Richard M. Stallman <rms@caffeine.ai.mit.edu>
100
101 * keymap.c (Fsingle_key_description): Make tem big enough.
102 (describe_buffer_bindings): Make buf big enough.
103
991999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu> 1041999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
100 105
101 * intervals.c (get_local_map): Use indirect_function, 106 * intervals.c (get_local_map): Use indirect_function,
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.")
1952 } 1952 }
1953 else 1953 else
1954 { 1954 {
1955 char tem[20]; 1955 char tem[30];
1956 1956
1957 *push_key_description (XUINT (key), tem) = 0; 1957 *push_key_description (XUINT (key), tem) = 0;
1958 return build_string (tem); 1958 return build_string (tem);
@@ -2423,7 +2423,7 @@ You type Translation\n\
2423 for (c = 0; c < translate_len; c++) 2423 for (c = 0; c < translate_len; c++)
2424 if (translate[c] != c) 2424 if (translate[c] != c)
2425 { 2425 {
2426 char buf[20]; 2426 char buf[30];
2427 char *bufend; 2427 char *bufend;
2428 2428
2429 if (alternate_heading) 2429 if (alternate_heading)