Skip to content

Commit cc66c95

Browse files
committed
warn which color is not found
1 parent ecfc50e commit cc66c95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

irteus/irtgl.l

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@
460460
((symbolp color)
461461
(setq c (find-if #'(lambda (o) (eq (send o :name) color))
462462
*face-colors*))
463-
(if c (send c :diffuse) (warn "Color name not found ")))
463+
(if c (send c :diffuse) (warn "Color name (~A) not found " color)))
464464
(t color)))
465465
(unless v (setq v (float-vector 0.5 0.5 0.5)))
466466
v))

0 commit comments

Comments
 (0)