diff options
| author | Richard M. Stallman | 2007-05-22 08:29:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-05-22 08:29:09 +0000 |
| commit | f7fa4950194235d94d3d90c62298839e641eac5b (patch) | |
| tree | abe8dcd9b8df0c9ab94a624993c4892b2f6c820d /src | |
| parent | ebbcece31ca5ae4119d0e6e455487ec26384303c (diff) | |
| download | emacs-f7fa4950194235d94d3d90c62298839e641eac5b.tar.gz emacs-f7fa4950194235d94d3d90c62298839e641eac5b.zip | |
(x_connection_closed): Remove NO_RETURN.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 4 |
1 files changed, 3 insertions, 1 deletions
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)); | |||
| 366 | static void x_sync_with_move P_ ((struct frame *, int, int, int)); | 366 | static void x_sync_with_move P_ ((struct frame *, int, int, int)); |
| 367 | static int handle_one_xevent P_ ((struct x_display_info *, XEvent *, | 367 | static int handle_one_xevent P_ ((struct x_display_info *, XEvent *, |
| 368 | int *, struct input_event *)); | 368 | int *, struct input_event *)); |
| 369 | static SIGTYPE x_connection_closed P_ ((Display *, char *)) NO_RETURN; | 369 | /* Don't declare this NO_RETURN because we want no |
| 370 | interference with debugging failing X calls. */ | ||
| 371 | static SIGTYPE x_connection_closed P_ ((Display *, char *)); | ||
| 370 | 372 | ||
| 371 | 373 | ||
| 372 | /* Flush display of frame F, or of all frames if F is null. */ | 374 | /* Flush display of frame F, or of all frames if F is null. */ |