diff options
| author | Dan Nicolaescu | 2006-04-11 07:13:33 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2006-04-11 07:13:33 +0000 |
| commit | db926d809113fbb185dfc9e400bdf3216a687762 (patch) | |
| tree | 1e836cc8120496a6647be0f45a6fdef0e8383fd3 /src/lisp.h | |
| parent | 2fb18d1328ca01410d24a73939e5b79a6a12a914 (diff) | |
| download | emacs-db926d809113fbb185dfc9e400bdf3216a687762.tar.gz emacs-db926d809113fbb185dfc9e400bdf3216a687762.zip | |
* lisp.h (wrong_type_argument): Mark as NO_RETURN.
* data.c (wrong_type_argument): Try to avoid compiler warnings due
to the fact the function is now marked as NO_RETURN.
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 5d1b3266a0d..9748eebfcb5 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -2246,7 +2246,7 @@ extern unsigned long cons_to_long P_ ((Lisp_Object)); | |||
| 2246 | extern void args_out_of_range P_ ((Lisp_Object, Lisp_Object)) NO_RETURN; | 2246 | extern void args_out_of_range P_ ((Lisp_Object, Lisp_Object)) NO_RETURN; |
| 2247 | extern void args_out_of_range_3 P_ ((Lisp_Object, Lisp_Object, | 2247 | extern void args_out_of_range_3 P_ ((Lisp_Object, Lisp_Object, |
| 2248 | Lisp_Object)) NO_RETURN; | 2248 | Lisp_Object)) NO_RETURN; |
| 2249 | extern Lisp_Object wrong_type_argument P_ ((Lisp_Object, Lisp_Object)); | 2249 | extern Lisp_Object wrong_type_argument P_ ((Lisp_Object, Lisp_Object)) NO_RETURN; |
| 2250 | extern void store_symval_forwarding P_ ((Lisp_Object, Lisp_Object, | 2250 | extern void store_symval_forwarding P_ ((Lisp_Object, Lisp_Object, |
| 2251 | Lisp_Object, struct buffer *)); | 2251 | Lisp_Object, struct buffer *)); |
| 2252 | extern Lisp_Object do_symval_forwarding P_ ((Lisp_Object)); | 2252 | extern Lisp_Object do_symval_forwarding P_ ((Lisp_Object)); |