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 | 2381d38d0af85e3a97eb9f98c66a7259a2a3e1e1 (patch) | |
tree | 00bdc68e837797ff0e0c4029dd5a058e00a75a2f /src/textprop.c | |
parent | 2d545d838f41ca56d5329ad00a30c1f7603504f0 (diff) | |
download | emacs-2381d38d0af85e3a97eb9f98c66a7259a2a3e1e1.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/textprop.c')
-rw-r--r-- | src/textprop.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/textprop.c b/src/textprop.c index b89d73a7ef9..fd70f039d22 100644 --- a/src/textprop.c +++ b/src/textprop.c @@ -78,6 +78,8 @@ Lisp_Object Vtext_property_default_nonsticky; Lisp_Object interval_insert_behind_hooks; Lisp_Object interval_insert_in_front_hooks; +static void text_read_only P_ ((Lisp_Object)) NO_RETURN; + /* Signal a `text-read-only' error. This function makes it easier to capture that error in GDB by putting a breakpoint on it. */ |