diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-09-27 15:21:16 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-09-27 15:21:16 (GMT) |
commit | bb5ffa4d6dd4518a1ce3d43f941f5ea766111418 (patch) | |
tree | 5bc0701b49839f4c2039e46686b5432d58c23b2d /unix | |
parent | 56bbfc9a93ab60e258275521f0e9230fab96815b (diff) | |
parent | 73b2c28849b73d0b903780b08c2836921cacc917 (diff) | |
download | tk-bb5ffa4d6dd4518a1ce3d43f941f5ea766111418.zip tk-bb5ffa4d6dd4518a1ce3d43f941f5ea766111418.tar.gz tk-bb5ffa4d6dd4518a1ce3d43f941f5ea766111418.tar.bz2 |
Merge core-8-6-branch. More surrogate handling, e.g. in HandleIMEComposition()
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tkUnixRFont.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tkUnixRFont.c b/unix/tkUnixRFont.c index edcfc8a..41cd096 100644 --- a/unix/tkUnixRFont.c +++ b/unix/tkUnixRFont.c @@ -778,7 +778,7 @@ LookUpColor(Display *display, /* Display to lookup colors on */ i >= 0; last2 = last, last = i, i = fontPtr->colors[i].next) { if (pixel == fontPtr->colors[i].color.pixel) { - /* + /* * Color found in cache. Move it to the front of the list and return it. */ if (last >= 0) { @@ -802,7 +802,7 @@ LookUpColor(Display *display, /* Display to lookup colors on */ last = fontPtr->ncolors++; } - /* + /* * Translate the pixel value to a color. Needs a server round-trip. */ xcolor.pixel = pixel; |