diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-05-14 18:56:21 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-05-14 18:56:21 +0000 |
commit | 4af4d124759b4648bded82482f4d043ad2b3bb79 (patch) | |
tree | 7bd33e54333d7f9fc548be6bd3c1700bda0b9a06 /attributes.c | |
parent | e5f01febd71fcb4390788a6d9c989b27a81cd94e (diff) | |
download | rtmux-4af4d124759b4648bded82482f4d043ad2b3bb79.tar.gz rtmux-4af4d124759b4648bded82482f4d043ad2b3bb79.tar.bz2 rtmux-4af4d124759b4648bded82482f4d043ad2b3bb79.zip |
Accept (and document) "none" instead of "default" for attributes as it
is clearer and avoids confusion with default colours.
Diffstat (limited to 'attributes.c')
-rw-r--r-- | attributes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/attributes.c b/attributes.c index 0e42c787..81f29452 100644 --- a/attributes.c +++ b/attributes.c @@ -28,7 +28,7 @@ attributes_tostring(u_char attr) static char buf[128]; if (attr == 0) - return ("default"); + return ("none"); buf[0] = '\0'; if (attr & GRID_ATTR_BRIGHT) @@ -63,7 +63,7 @@ attributes_fromstring(const char *str) if (strchr(delimiters, str[strlen(str) - 1]) != NULL) return (-1); - if (strcasecmp(str, "default") == 0) + if (strcasecmp(str, "default") == 0 || strcasecmp(str, "none") == 0) return (0); attr = 0; |