Changeset 12c35df for util.c


Ignore:
Timestamp:
Oct 28, 2003, 7:56:35 PM (21 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
cee1f25
Parents:
faf71b5
Message:
Fixed replies to loopback messages
Fixed smartnarrow on classes/instances with spaces
Don't allow duplicates in command history
Added the 'loggingdirection' variable
All loopback messages log to 'loopback' now
Print an error message if trying an invalid color for a filter
Fixed bug causing > not to go to end of editwin every time
File:
1 edited

Legend:

Unmodified
Added
Removed
  • util.c

    re3d9c77 r12c35df  
    408408}
    409409
    410 /* Return the owl color associated with the named color */
     410/* Return the owl color associated with the named color.  Return -1
     411 * if the named color is not available
     412 */
    411413int owl_util_string_to_color(char *color)
    412414{
     
    430432    return(OWL_COLOR_DEFAULT);
    431433  }
    432   return(OWL_COLOR_DEFAULT);
     434  return(-1);
    433435}
    434436
Note: See TracChangeset for help on using the changeset viewer.