]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_connection_closed): Remove NO_RETURN.
authorRichard M. Stallman <rms@gnu.org>
Tue, 22 May 2007 08:28:46 +0000 (08:28 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 22 May 2007 08:28:46 +0000 (08:28 +0000)
src/ChangeLog
src/xterm.c

index 220a32a5022c36b3aa978f11abbfc87919a0914c..3c837ccf2b5de2a32f860f19dba6540fd080f380 100644 (file)
@@ -1,3 +1,7 @@
+2007-05-22  Richard Stallman  <rms@gnu.org>
+
+       * xterm.c (x_connection_closed): Remove NO_RETURN.
+
 2007-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * syntax.c (skip_chars): Update syntax-table only after we checked that
index 4f77e22ac59730d926aee6baf5508fe42677491a..bc4fd366796af217c36441b470eadeab8aabc09a 100644 (file)
@@ -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.  */