diff options
| author | Dan Nicolaescu <dann@ics.uci.edu> | 2006-05-29 06:19:09 +0000 |
|---|---|---|
| committer | Dan Nicolaescu <dann@ics.uci.edu> | 2006-05-29 06:19:09 +0000 |
| commit | 345b3483786cefe059d06c07ea79b2e329f45bf7 (patch) | |
| tree | 0fecc79ddae6adf7f58630ed3b12c989b5fee51f | |
| parent | c57597ddb27edbe264f374fa53272a179fbbc129 (diff) | |
| download | emacs-345b3483786cefe059d06c07ea79b2e329f45bf7.tar.gz | |
(invalid_character): Mark as NO_RETURN.
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/charset.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c973a07f264..b864244bc89 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2006-05-28 Dan Nicolaescu <dann@ics.uci.edu> + + * charset.h (invalid_character): Mark as NO_RETURN. + 2006-05-29 Kenichi Handa <handa@m17n.org> * coding.c (Ffind_operation_coding_system): Call a function by diff --git a/src/charset.h b/src/charset.h index 0d61aa054c0..b7ab4cb8b53 100644 --- a/src/charset.h +++ b/src/charset.h @@ -825,7 +825,7 @@ while (0) /* This is the maximum byte length of multi-byte sequence. */ #define MAX_MULTIBYTE_LENGTH 4 -extern void invalid_character P_ ((int)); +extern void invalid_character P_ ((int)) NO_RETURN; extern int translate_char P_ ((Lisp_Object, int, int, int, int)); extern int split_string P_ ((const unsigned char *, int, int *, |
