aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPo Lu2022-03-07 19:57:19 +0800
committerPo Lu2022-03-07 19:57:19 +0800
commitc7d3ebc7fd82199bf3f943c362d835fa0f0a1be6 (patch)
treecb62bfb1ce07adbd2da2b60d555f6a8b7506fa35 /src
parent9e1186a73279f9e6416cc594171482be5a223820 (diff)
downloademacs-c7d3ebc7fd82199bf3f943c362d835fa0f0a1be6.tar.gz
emacs-c7d3ebc7fd82199bf3f943c362d835fa0f0a1be6.zip
; * src/xterm.c (x_alloc_nearest_color_1): Commit missing hunk (again).
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 76222d6256f..d3e3ed3a06b 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -3878,10 +3878,6 @@ x_alloc_nearest_color_1 (Display *dpy, Colormap cmap, XColor *color)
3878 * ((color->blue >> 8) - (cells[x].blue >> 8)))); 3878 * ((color->blue >> 8) - (cells[x].blue >> 8))));
3879 if (trial_delta < nearest_delta) 3879 if (trial_delta < nearest_delta)
3880 { 3880 {
3881 temp.red = cells[x].red;
3882 temp.green = cells[x].green;
3883 temp.blue = cells[x].blue;
3884
3885 nearest = x; 3881 nearest = x;
3886 nearest_delta = trial_delta; 3882 nearest_delta = trial_delta;
3887 } 3883 }