diff options
| author | Dan Nicolaescu | 2006-05-29 06:19:09 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2006-05-29 06:19:09 +0000 |
| commit | 345b3483786cefe059d06c07ea79b2e329f45bf7 (patch) | |
| tree | 0fecc79ddae6adf7f58630ed3b12c989b5fee51f /src | |
| parent | c57597ddb27edbe264f374fa53272a179fbbc129 (diff) | |
| download | emacs-345b3483786cefe059d06c07ea79b2e329f45bf7.tar.gz emacs-345b3483786cefe059d06c07ea79b2e329f45bf7.zip | |
(invalid_character): Mark as NO_RETURN.
Diffstat (limited to 'src')
| -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 @@ | |||
| 1 | 2006-05-28 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * charset.h (invalid_character): Mark as NO_RETURN. | ||
| 4 | |||
| 1 | 2006-05-29 Kenichi Handa <handa@m17n.org> | 5 | 2006-05-29 Kenichi Handa <handa@m17n.org> |
| 2 | 6 | ||
| 3 | * coding.c (Ffind_operation_coding_system): Call a function by | 7 | * 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) | |||
| 825 | /* This is the maximum byte length of multi-byte sequence. */ | 825 | /* This is the maximum byte length of multi-byte sequence. */ |
| 826 | #define MAX_MULTIBYTE_LENGTH 4 | 826 | #define MAX_MULTIBYTE_LENGTH 4 |
| 827 | 827 | ||
| 828 | extern void invalid_character P_ ((int)); | 828 | extern void invalid_character P_ ((int)) NO_RETURN; |
| 829 | 829 | ||
| 830 | extern int translate_char P_ ((Lisp_Object, int, int, int, int)); | 830 | extern int translate_char P_ ((Lisp_Object, int, int, int, int)); |
| 831 | extern int split_string P_ ((const unsigned char *, int, int *, | 831 | extern int split_string P_ ((const unsigned char *, int, int *, |