summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/xfaces.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index 36c3c1ab470..2b235e0c0c3 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -360,9 +360,9 @@ load_color (f, name)
BLOCK_INPUT;
result = XAllocColor (dpy, cmap, &color);
UNBLOCK_INPUT;
- if (! result)
- Fsignal (Qerror, Fcons (build_string ("X server cannot allocate color"),
- Fcons (name, Qnil)));
+ /* Ignore the return value of XallocColor, so that
+ we use a color close to the one requested
+ if we can't get the exact request. */
return (unsigned long) color.pixel;
}