diff options
| author | Po Lu | 2022-11-06 20:11:56 +0800 |
|---|---|---|
| committer | Po Lu | 2022-11-06 20:11:56 +0800 |
| commit | 44138d5ecce275caef9efe0ae4f4a89e4a33b588 (patch) | |
| tree | 85ef567cb5deb89969f10d1be6722e2fc1d7841e | |
| parent | 5f8c655a44a0e7ad1fe6f8b23acb4e6c93dc72a6 (diff) | |
| download | emacs-44138d5ecce275caef9efe0ae4f4a89e4a33b588.tar.gz emacs-44138d5ecce275caef9efe0ae4f4a89e4a33b588.zip | |
; * src/image.c (syms_of_image): Add missed part of change.
Author:
| -rw-r--r-- | src/image.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/image.c b/src/image.c index 15eaf89d7f6..600c32571e1 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -12217,7 +12217,10 @@ non-numeric, there is no explicit limit on the size of images. */); | |||
| 12217 | && ((defined HAVE_NS && defined NS_IMPL_COCOA) \ | 12217 | && ((defined HAVE_NS && defined NS_IMPL_COCOA) \ |
| 12218 | || defined HAVE_HAIKU) | 12218 | || defined HAVE_HAIKU) |
| 12219 | DEFSYM (Qsvg, "svg"); | 12219 | DEFSYM (Qsvg, "svg"); |
| 12220 | add_image_type (Qsvg); | 12220 | |
| 12221 | /* On Haiku, the SVG translator may not be installed. */ | ||
| 12222 | if (image_can_use_native_api (Qsvg)) | ||
| 12223 | add_image_type (Qsvg); | ||
| 12221 | #endif | 12224 | #endif |
| 12222 | 12225 | ||
| 12223 | #ifdef HAVE_NS | 12226 | #ifdef HAVE_NS |