diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2023-12-03 23:31:30 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 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.tar.bz2 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, } #if HAVE_NTGUI - /* Windows stores the image colours in BGR format, and SVG expects + /* Windows stores the image colors in BGR format, and SVG expects them in RGB. */ foreground = (foreground & 0x0000FF) << 16 | (foreground & 0xFF0000) >> 16 |