diff options
| author | Dan Nicolaescu | 2006-07-18 16:33:45 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2006-07-18 16:33:45 +0000 |
| commit | 2381d38d0af85e3a97eb9f98c66a7259a2a3e1e1 (patch) | |
| tree | 00bdc68e837797ff0e0c4029dd5a058e00a75a2f /lib-src | |
| parent | 2d545d838f41ca56d5329ad00a30c1f7603504f0 (diff) | |
| download | emacs-2381d38d0af85e3a97eb9f98c66a7259a2a3e1e1.tar.gz emacs-2381d38d0af85e3a97eb9f98c66a7259a2a3e1e1.zip | |
* ebrowse.c (usage, version): Mark as NO_RETURN.
* emacsclient.c (print_help_and_exit): Likewise.
* xterm.c (x_connection_closed, x_error_quitter): Mark as NO_RETURN.
* textprop.c (text_read_only): Likewise.
* lread.c (end_of_file_error): Likewise.
* lisp.h (circular_list_error, memory_full, buffer_memory_full):
Likewise.
* eval.c (unwind_to_catch): Likewise.
* buffer.h (buffer_slot_type_mismatch): Likewise.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 6 | ||||
| -rw-r--r-- | lib-src/ebrowse.c | 2 | ||||
| -rw-r--r-- | lib-src/emacsclient.c | 2 |
3 files changed, 9 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index e792753b748..94687670725 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2006-07-18 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * ebrowse.c (usage, version): Mark as NO_RETURN. | ||
| 4 | |||
| 5 | * emacsclient.c (print_help_and_exit): Likewise. | ||
| 6 | |||
| 1 | 2006-07-10 Francesco Potort,Al(B <pot@gnu.org> | 7 | 2006-07-10 Francesco Potort,Al(B <pot@gnu.org> |
| 2 | 8 | ||
| 3 | * etags.c (absolute_filename): Free unused space (cosmetic change). | 9 | * etags.c (absolute_filename): Free unused space (cosmetic change). |
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index 398dd10896e..1880f1655ee 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c | |||
| @@ -533,6 +533,8 @@ struct sym *parse_qualified_ident_or_type P_ ((char **)); | |||
| 533 | void parse_qualified_param_ident_or_type P_ ((char **)); | 533 | void parse_qualified_param_ident_or_type P_ ((char **)); |
| 534 | int globals P_ ((int)); | 534 | int globals P_ ((int)); |
| 535 | void yyerror P_ ((char *, char *)); | 535 | void yyerror P_ ((char *, char *)); |
| 536 | void usage P_ ((int)) NO_RETURN; | ||
| 537 | void version P_ (()) NO_RETURN; | ||
| 536 | 538 | ||
| 537 | 539 | ||
| 538 | 540 | ||
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 46cb7ec2aea..b0bf50c2c78 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c | |||
| @@ -67,7 +67,7 @@ const char * alternate_editor = NULL; | |||
| 67 | /* If non-NULL, the filename of the UNIX socket. */ | 67 | /* If non-NULL, the filename of the UNIX socket. */ |
| 68 | char *socket_name = NULL; | 68 | char *socket_name = NULL; |
| 69 | 69 | ||
| 70 | void print_help_and_exit (); | 70 | void print_help_and_exit () NO_RETURN; |
| 71 | 71 | ||
| 72 | struct option longopts[] = | 72 | struct option longopts[] = |
| 73 | { | 73 | { |