diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2006-07-18 16:33:45 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2006-07-18 16:33:45 +0000 |
commit | 67d9237078b9dcd5645e3ccb14a4099bcf9eba0a (patch) | |
tree | 5f377cb0a23f922de69b7b2696da2f7f0b61102c /src/eval.c | |
parent | 7f8d77eaac8a2ad3a5e41d620f1e6debbbafa089 (diff) | |
download | emacs-67d9237078b9dcd5645e3ccb14a4099bcf9eba0a.tar.gz |
* 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 'src/eval.c')
-rw-r--r-- | src/eval.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c index 37c245234fc..0d7a6a31038 100644 --- a/src/eval.c +++ b/src/eval.c @@ -198,6 +198,7 @@ Lisp_Object Vmacro_declaration_function; extern Lisp_Object Qrisky_local_variable; static Lisp_Object funcall_lambda P_ ((Lisp_Object, int, Lisp_Object*)); +static void unwind_to_catch P_ ((struct catchtag *, Lisp_Object)) NO_RETURN; void init_eval_once () |