aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-11-18 21:07:10 +0000
committerGerd Moellmann2000-11-18 21:07:10 +0000
commitfb3cd89b5f1b6ec5d72c1202a961948d8575cc52 (patch)
tree31d42dbad2e5310e1e72902878b9dbab730dec06 /src
parent2d27dae2d122e7ff436b9a94bcd0f6e12c02de69 (diff)
downloademacs-fb3cd89b5f1b6ec5d72c1202a961948d8575cc52.tar.gz
emacs-fb3cd89b5f1b6ec5d72c1202a961948d8575cc52.zip
(x_set_tool_bar_lines): When clearing the frame, also
clear current matrices.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/xfns.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 0146a543e01..20f2f1d6345 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,10 @@
12000-11-18 Gerd Moellmann <gerd@gnu.org> 12000-11-18 Gerd Moellmann <gerd@gnu.org>
2 2
3 * xdisp.c: Use BINDING_STACK_SIZE throughout.
4
5 * xfns.c (x_set_tool_bar_lines): When clearing the frame, also
6 clear current matrices.
7
3 * buffer.c (mmap_enlarge): Don't print a message on stderr 8 * buffer.c (mmap_enlarge): Don't print a message on stderr
4 if mapping new memory at the end of the existing region fails. 9 if mapping new memory at the end of the existing region fails.
5 10
diff --git a/src/xfns.c b/src/xfns.c
index ca90996770d..84813c07054 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -2042,6 +2042,7 @@ x_set_tool_bar_lines (f, value, oldval)
2042 { 2042 {
2043 updating_frame = f; 2043 updating_frame = f;
2044 clear_frame (); 2044 clear_frame ();
2045 clear_current_matrices (f);
2045 updating_frame = NULL; 2046 updating_frame = NULL;
2046 } 2047 }
2047} 2048}