diff options
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 @@ +2006-07-18 Dan Nicolaescu <dann@ics.uci.edu> + + * ebrowse.c (usage, version): Mark as NO_RETURN. + + * emacsclient.c (print_help_and_exit): Likewise. + 2006-07-10 Francesco Potort,Al(B <pot@gnu.org> * 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 **)); void parse_qualified_param_ident_or_type P_ ((char **)); int globals P_ ((int)); void yyerror P_ ((char *, char *)); +void usage P_ ((int)) NO_RETURN; +void version P_ (()) NO_RETURN; 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; /* If non-NULL, the filename of the UNIX socket. */ char *socket_name = NULL; -void print_help_and_exit (); +void print_help_and_exit () NO_RETURN; struct option longopts[] = { |