From: <ai...@us...> - 2009-08-22 20:28:33
|
Revision: 10315 http://plplot.svn.sourceforge.net/plplot/?rev=10315&view=rev Author: airwin Date: 2009-08-22 20:28:26 +0000 (Sat, 22 Aug 2009) Log Message: ----------- Unknown colours were set to red previously but identified as black. I have fixed that small inconsistency in name and updated the comment consistently. Modified Paths: -------------- trunk/src/plctrl.c Modified: trunk/src/plctrl.c =================================================================== --- trunk/src/plctrl.c 2009-08-21 20:16:22 UTC (rev 10314) +++ trunk/src/plctrl.c 2009-08-22 20:28:26 UTC (rev 10315) @@ -893,9 +893,9 @@ { int i; - /* Initialize all colors to black. */ + /* Initialize all unknown colours to red as a warning. */ for (i = imin; i <= imax; i++) - color_def(i, 255, 0, 0, 1.0, "black"); + color_def(i, 255, 0, 0, 1.0, "red"); } /*--------------------------------------------------------------------------*\ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |