diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2016-09-27 15:21:16 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2016-09-27 15:21:16 (GMT) |
commit | e6eaf5c274fc02a9692a4fafb2c9a84b5fc2c000 (patch) | |
tree | 5bc0701b49839f4c2039e46686b5432d58c23b2d /unix | |
parent | d7bff6f0e144dbfedeaab9a286b21467556e0bcf (diff) | |
parent | b8f10fef5770ffc5a9a7c3dfaced6c9e2aba4462 (diff) | |
download | tk-e6eaf5c274fc02a9692a4fafb2c9a84b5fc2c000.zip tk-e6eaf5c274fc02a9692a4fafb2c9a84b5fc2c000.tar.gz tk-e6eaf5c274fc02a9692a4fafb2c9a84b5fc2c000.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; |