diff options
| author | Mattias EngdegÄrd | 2024-05-12 14:55:55 +0200 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2024-05-12 15:04:47 +0200 |
| commit | 9365feadccf1e28438e41c4ce8bf60ab8e4e1def (patch) | |
| tree | 1bd6f459468fb5ccb5c80beac8a86f62fe1affc6 /src/image.c | |
| parent | 38091e43bee991920db81263fe56da444a123fae (diff) | |
| download | emacs-9365feadccf1e28438e41c4ce8bf60ab8e4e1def.tar.gz emacs-9365feadccf1e28438e41c4ce8bf60ab8e4e1def.zip | |
Silence some macOS build warnings
* src/image.c (native_image_type): Declare static.
* src/keyboard.c (lispy_function_keys): Declare static on NS.
* src/nsmenu.m (context_menu_value):
* src/nsterm.m (ns_frame_parm_handlers): Move extern declarations...
* src/nsterm.h: ...here.
* test/src/emacs-module-resources/mod-test.c: Add extern declaration.
Diffstat (limited to 'src/image.c')
| -rw-r--r-- | src/image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/image.c b/src/image.c index e93fc3183af..3138ef25a63 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -12744,7 +12744,7 @@ static struct image_type const image_types[] = | |||
| 12744 | }; | 12744 | }; |
| 12745 | 12745 | ||
| 12746 | #if HAVE_NATIVE_IMAGE_API | 12746 | #if HAVE_NATIVE_IMAGE_API |
| 12747 | struct image_type native_image_type = | 12747 | static struct image_type native_image_type = |
| 12748 | { SYMBOL_INDEX (Qnative_image), native_image_p, native_image_load, | 12748 | { SYMBOL_INDEX (Qnative_image), native_image_p, native_image_load, |
| 12749 | image_clear_image }; | 12749 | image_clear_image }; |
| 12750 | #endif | 12750 | #endif |