Skip to content

Commit

Permalink
warn which color is not found
Browse files Browse the repository at this point in the history
  • Loading branch information
k-okada committed Nov 13, 2019
1 parent ecfc50e commit 712e8be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion irteus/irtgl.l
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@
((symbolp color)
(setq c (find-if #'(lambda (o) (eq (send o :name) color))
*face-colors*))
(if c (send c :diffuse) (warn "Color name not found ")))
(if c (send c :diffuse) (warn "Color name (~A) not found~%" color)))
(t color)))
(unless v (setq v (float-vector 0.5 0.5 0.5)))
v))
Expand Down

0 comments on commit 712e8be

Please sign in to comment.