From: Richard M. Stallman Date: Tue, 22 May 2007 08:28:46 +0000 (+0000) Subject: (x_connection_closed): Remove NO_RETURN. X-Git-Tag: emacs-22.1~72 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c81036c67774822ae30ee3fb1047511dc3356faf;p=emacs.git (x_connection_closed): Remove NO_RETURN. --- diff --git a/src/ChangeLog b/src/ChangeLog index 220a32a5022..3c837ccf2b5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2007-05-22 Richard Stallman + + * xterm.c (x_connection_closed): Remove NO_RETURN. + 2007-05-19 Stefan Monnier * syntax.c (skip_chars): Update syntax-table only after we checked that diff --git a/src/xterm.c b/src/xterm.c index 4f77e22ac59..bc4fd366796 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. */