diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-08-01 11:54:33 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-08-01 11:54:33 +0000 |
commit | f09c15edac41285371b76ce4d4539db3669bda05 (patch) | |
tree | 32bba58ea8e7adc17f1ae6fef5e1456ed6823b65 | |
parent | 81b1a79dc541152f6ca07d87b53361083b42b94b (diff) | |
download | emacs-f09c15edac41285371b76ce4d4539db3669bda05.tar.gz emacs-f09c15edac41285371b76ce4d4539db3669bda05.tar.bz2 emacs-f09c15edac41285371b76ce4d4539db3669bda05.zip |
(command_loop_1): Fix spelling of
resize_echo_area_exactly.
-rw-r--r-- | src/keyboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index f44ccf55bb8..66519b6370a 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -1327,7 +1327,7 @@ command_loop_1 () /* If displaying a message, resize the echo area window to fit that message's size exactly. */ if (!NILP (echo_area_buffer[0])) - resize_echo_area_axactly (); + resize_echo_area_exactly (); if (!NILP (Vdeferred_action_list)) call0 (Vdeferred_action_function); @@ -1642,7 +1642,7 @@ command_loop_1 () /* If displaying a message, resize the echo area window to fit that message's size exactly. */ if (!NILP (echo_area_buffer[0])) - resize_echo_area_axactly (); + resize_echo_area_exactly (); if (!NILP (Vdeferred_action_list)) safe_run_hooks (Qdeferred_action_function); |