diff options
| author | Gerd Moellmann | 2001-08-01 11:59:42 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-08-01 11:59:42 +0000 |
| commit | 308a74d8bdbc608748114c5fa35b2bc1f13a663d (patch) | |
| tree | 7f91c860821c1999c65d0b34c9077113e3fbdfcf /src | |
| parent | af42d485b476c420b985977345196faaa0dbebc5 (diff) | |
| download | emacs-308a74d8bdbc608748114c5fa35b2bc1f13a663d.tar.gz emacs-308a74d8bdbc608748114c5fa35b2bc1f13a663d.zip | |
(resize_echo_area_exactly): Fix typo in function name.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 8 | ||||
| -rw-r--r-- | src/xdisp.c | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 11c70d99957..0fa5c980ad1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,13 @@ | |||
| 1 | 2001-08-01 Gerd Moellmann <gerd@gnu.org> | 1 | 2001-08-01 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * keyboard.c (command_loop_1): Fix spelling of | ||
| 4 | resize_echo_area_exactly. | ||
| 5 | |||
| 6 | * dispextern.h (resize_echo_area_exactly): Fix typo in function | ||
| 7 | name. | ||
| 8 | |||
| 9 | * xdisp.c (resize_echo_area_exactly): Fix typo in function name. | ||
| 10 | |||
| 3 | * xfns.c (x_set_tool_bar_lines): Clear the tool bar window's | 11 | * xfns.c (x_set_tool_bar_lines): Clear the tool bar window's |
| 4 | current matrix when the window gets smaller. | 12 | current matrix when the window gets smaller. |
| 5 | 13 | ||
diff --git a/src/xdisp.c b/src/xdisp.c index fae6aa5d440..91b2a5e8a6d 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -6458,7 +6458,7 @@ display_echo_area_1 (a1, a2, a3, a4) | |||
| 6458 | currently displayed message, if there is one. */ | 6458 | currently displayed message, if there is one. */ |
| 6459 | 6459 | ||
| 6460 | void | 6460 | void |
| 6461 | resize_echo_area_axactly () | 6461 | resize_echo_area_exactly () |
| 6462 | { | 6462 | { |
| 6463 | if (BUFFERP (echo_area_buffer[0]) | 6463 | if (BUFFERP (echo_area_buffer[0]) |
| 6464 | && WINDOWP (echo_area_window)) | 6464 | && WINDOWP (echo_area_window)) |
| @@ -6479,7 +6479,7 @@ resize_echo_area_axactly () | |||
| 6479 | 6479 | ||
| 6480 | 6480 | ||
| 6481 | /* Callback function for with_echo_area_buffer, when used from | 6481 | /* Callback function for with_echo_area_buffer, when used from |
| 6482 | resize_echo_area_axactly. A1 contains a pointer to the window to | 6482 | resize_echo_area_exactly. A1 contains a pointer to the window to |
| 6483 | resize, A2 to A4 are not used. Value is what resize_mini_window | 6483 | resize, A2 to A4 are not used. Value is what resize_mini_window |
| 6484 | returns. */ | 6484 | returns. */ |
| 6485 | 6485 | ||