aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2006-10-10 14:39:23 +0000
committerStefan Monnier2006-10-10 14:39:23 +0000
commitb70e1a2bdc58e85af0c89e5d9cf59337355e3070 (patch)
tree8edc12d37717039e5eaca5853463880dc6cd977e /src
parent516c741dce848452dee4900c97c3571e010c401d (diff)
downloademacs-b70e1a2bdc58e85af0c89e5d9cf59337355e3070.tar.gz
emacs-b70e1a2bdc58e85af0c89e5d9cf59337355e3070.zip
Include xterm.h for x_fully_uncatch_errors and friends.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog8
-rw-r--r--src/eval.c4
2 files changed, 11 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index aa603feab4b..0c9e2272efd 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12006-10-10 Stefan Monnier <monnier@iro.umontreal.ca> 12006-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * eval.c: Include xterm.h for x_fully_uncatch_errors and friends.
4
5 * dispextern.h: Declare x_create_bitmap_from_xpm_data.
6
7 * xterm.c (x_check_expected_move): Remove unused var `count'.
8
3 * xmenu.c (syms_of_xmenu): Use Ffset rather than Fdefalias, since 9 * xmenu.c (syms_of_xmenu): Use Ffset rather than Fdefalias, since
4 Fdefalias is not declared in any *.h file. 10 Fdefalias is not declared in any *.h file.
5 11
@@ -1540,7 +1546,7 @@
1540 (x_set_offset, x_check_fullscreen): Extensive changes to make 1546 (x_set_offset, x_check_fullscreen): Extensive changes to make
1541 frame positioning deterministic under X. 1547 frame positioning deterministic under X.
1542 1548
1543 * xterm.h (x_output): Added members left_before_move and 1549 * xterm.h (x_output): Add members left_before_move and
1544 top_before_move. Removed members expected_left and expected_top. 1550 top_before_move. Removed members expected_left and expected_top.
1545 1551
15462006-06-16 Kim F. Storm <storm@cua.dk> 15522006-06-16 Kim F. Storm <storm@cua.dk>
diff --git a/src/eval.c b/src/eval.c
index dbd30eac201..4e04422d2d6 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -28,6 +28,10 @@ Boston, MA 02110-1301, USA. */
28#include "dispextern.h" 28#include "dispextern.h"
29#include <setjmp.h> 29#include <setjmp.h>
30 30
31#if HAVE_X_WINDOWS
32#include "xterm.h"
33#endif
34
31/* This definition is duplicated in alloc.c and keyboard.c */ 35/* This definition is duplicated in alloc.c and keyboard.c */
32/* Putting it in lisp.h makes cc bomb out! */ 36/* Putting it in lisp.h makes cc bomb out! */
33 37