aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/xterm.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 66dcf16adb9..7a652d04049 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12006-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * xterm.c (x_catch_errors_unwind): Yet another int/Lisp_Object mixup.
4
12006-01-23 Kim F. Storm <storm@cua.dk> 52006-01-23 Kim F. Storm <storm@cua.dk>
2 6
3 * xdisp.c (handle_single_display_spec): Fix handling of space 7 * xdisp.c (handle_single_display_spec): Fix handling of space
diff --git a/src/xterm.c b/src/xterm.c
index 9b19dbb0f5e..114a7f12459 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -7543,7 +7543,8 @@ x_catch_errors_unwind (dummy)
7543 x_error_message = x_error_message->prev; 7543 x_error_message = x_error_message->prev;
7544 free (tmp); 7544 free (tmp);
7545 7545
7546 eassert (dummy == make_number ((EMACS_INT)dpy + (EMACS_INT)x_error_message)); 7546 eassert (EQ (dummy,
7547 make_number ((EMACS_INT)dpy + (EMACS_INT)x_error_message)));
7547 7548
7548 return Qnil; 7549 return Qnil;
7549} 7550}