]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fsingle_key_description): Make tem big enough.
authorPhillip Rulon <pjr@gnu.org>
Sun, 10 Oct 1999 01:39:53 +0000 (01:39 +0000)
committerPhillip Rulon <pjr@gnu.org>
Sun, 10 Oct 1999 01:39:53 +0000 (01:39 +0000)
(describe_buffer_bindings): Make buf big enough.

src/ChangeLog
src/keymap.c

index fa10ff354d07d3bdd4dacc42edcc226f756fab42..7318c21cdf9817fa7dd13f7a7b914ec10e22cbab 100644 (file)
        * xdisp.c (resize_mini_window): Do nothing if frame is an X
        frame that hasn't been initialized yet.
 
+1999-09-28  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
+
+       * keymap.c (Fsingle_key_description): Make tem big enough.
+       (describe_buffer_bindings): Make buf big enough.
+
 1999-09-27  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
 
        * intervals.c (get_local_map): Use indirect_function,
index 9216fc498f4569774ef96138617e5d7edf14e997..e20e4fd79a9ebc0e14cde20e3b9a77a5937c8770 100644 (file)
@@ -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)