diff options
| author | Richard M. Stallman | 2007-05-22 08:28:46 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-05-22 08:28:46 +0000 |
| commit | c81036c67774822ae30ee3fb1047511dc3356faf (patch) | |
| tree | 32dce14d9ec826f29e48f7bf22d69d1a170978f2 /src | |
| parent | 2cf0c0db339da02d678e5aa08e9f2cbd9bcf262c (diff) | |
| download | emacs-c81036c67774822ae30ee3fb1047511dc3356faf.tar.gz emacs-c81036c67774822ae30ee3fb1047511dc3356faf.zip | |
(x_connection_closed): Remove NO_RETURN.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/xterm.c | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 220a32a5022..3c837ccf2b5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-05-22 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * xterm.c (x_connection_closed): Remove NO_RETURN. | ||
| 4 | |||
| 1 | 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * syntax.c (skip_chars): Update syntax-table only after we checked that | 7 | * 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)); | |||
| 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. */ |