aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2007-05-22 08:28:46 +0000
committerRichard M. Stallman <[email protected]>2007-05-22 08:28:46 +0000
commitc81036c67774822ae30ee3fb1047511dc3356faf (patch)
tree32dce14d9ec826f29e48f7bf22d69d1a170978f2
parent2cf0c0db339da02d678e5aa08e9f2cbd9bcf262c (diff)
(x_connection_closed): Remove NO_RETURN.
-rw-r--r--src/ChangeLog4
-rw-r--r--src/xterm.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 220a32a502..3c837ccf2b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2007-05-22 Richard Stallman <[email protected]>
+
+ * xterm.c (x_connection_closed): Remove NO_RETURN.
+
2007-05-19 Stefan Monnier <[email protected]>
* syntax.c (skip_chars): Update syntax-table only after we checked that
diff --git a/src/xterm.c b/src/xterm.c
index 4f77e22ac5..bc4fd36679 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -366,7 +366,9 @@ static void x_check_expected_move P_ ((struct frame *, int, int));
static void x_sync_with_move P_ ((struct frame *, int, int, int));
static int handle_one_xevent P_ ((struct x_display_info *, XEvent *,
int *, struct input_event *));
-static SIGTYPE x_connection_closed P_ ((Display *, char *)) NO_RETURN;
+/* Don't declare this NO_RETURN because we want no
+ interference with debugging failing X calls. */
+static SIGTYPE x_connection_closed P_ ((Display *, char *));
/* Flush display of frame F, or of all frames if F is null. */