diff options
| author | Stefan Kangas | 2023-12-03 23:31:30 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2023-12-03 23:31:30 +0100 |
| commit | 5f923ff1a6a8a9ff6f06dc49c8e0e2ceee111567 (patch) | |
| tree | 9da1bc8ef27afceea49d2a554ba1f6eaca5b9694 /src/image.c | |
| parent | a1f88963f5d185551af143c0faa7854519706858 (diff) | |
| download | emacs-5f923ff1a6a8a9ff6f06dc49c8e0e2ceee111567.tar.gz emacs-5f923ff1a6a8a9ff6f06dc49c8e0e2ceee111567.zip | |
; Fix typos
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 c717ac88dca..e557f97377d 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -11424,7 +11424,7 @@ svg_load_image (struct frame *f, struct image *img, char *contents, | |||
| 11424 | } | 11424 | } |
| 11425 | 11425 | ||
| 11426 | #if HAVE_NTGUI | 11426 | #if HAVE_NTGUI |
| 11427 | /* Windows stores the image colours in BGR format, and SVG expects | 11427 | /* Windows stores the image colors in BGR format, and SVG expects |
| 11428 | them in RGB. */ | 11428 | them in RGB. */ |
| 11429 | foreground = (foreground & 0x0000FF) << 16 | 11429 | foreground = (foreground & 0x0000FF) << 16 |
| 11430 | | (foreground & 0xFF0000) >> 16 | 11430 | | (foreground & 0xFF0000) >> 16 |