]> code.delx.au - gnu-emacs/commitdiff
(load_color): misleading comment rewritten.
authorKarl Heuer <kwzh@gnu.org>
Mon, 5 Jun 1995 17:35:01 +0000 (17:35 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 5 Jun 1995 17:35:01 +0000 (17:35 +0000)
src/xfaces.c

index 24719321ae6570f69758951cf041a306a4f11584..efacf370c27e4a40d436d0fe882d9d9c374a8421 100644 (file)
@@ -347,13 +347,12 @@ load_color (f, name)
     return FACE_DEFAULT;
 
   CHECK_STRING (name, 0);
+  /* if the colormap is full, defined_color will return a best match
+     to the values in an an existing cell. */
   result = defined_color(f, (char *) XSTRING (name)->data, &color, 1);
   if (! result)
     Fsignal (Qerror, Fcons (build_string ("undefined 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;
 }