diff options
| author | Stefan Kangas | 2022-10-21 08:12:59 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2022-10-21 08:12:59 +0200 |
| commit | 6987c5bbb794a001f6e5654bd9ea9c0e097bac09 (patch) | |
| tree | 2ffcf88cdb9a0999b657e7b15439bea5d91b40af | |
| parent | a93ec52542abad5934d83aca4a1f78eaa97c4f98 (diff) | |
| download | emacs-6987c5bbb794a001f6e5654bd9ea9c0e097bac09.tar.gz emacs-6987c5bbb794a001f6e5654bd9ea9c0e097bac09.zip | |
* src/lisp.h (pkg_error): Fix GCC warning in declaration.
| -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 2042dbbd2f9..f60583a1507 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -2272,7 +2272,7 @@ extern void init_pkg_once (void); | |||
| 2272 | extern void init_pkg (void); | 2272 | extern void init_pkg (void); |
| 2273 | extern void syms_of_pkg (void); | 2273 | extern void syms_of_pkg (void); |
| 2274 | extern Lisp_Object pkg_qualified_symbol (Lisp_Object name, Lisp_Object package, bool external); | 2274 | extern Lisp_Object pkg_qualified_symbol (Lisp_Object name, Lisp_Object package, bool external); |
| 2275 | extern void pkg_error (const char *fmt, ...); | 2275 | extern _Noreturn void pkg_error (const char *fmt, ...) ATTRIBUTE_FORMAT_PRINTF (1, 0); |
| 2276 | extern Lisp_Object pkg_unqualified_symbol (Lisp_Object name); | 2276 | extern Lisp_Object pkg_unqualified_symbol (Lisp_Object name); |
| 2277 | extern bool pkg_keywordp (Lisp_Object obj); | 2277 | extern bool pkg_keywordp (Lisp_Object obj); |
| 2278 | extern Lisp_Object pkg_define_symbol (Lisp_Object sym, Lisp_Object package); | 2278 | extern Lisp_Object pkg_define_symbol (Lisp_Object sym, Lisp_Object package); |