aboutsummaryrefslogtreecommitdiffhomepage
path: root/color.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-01-31 15:57:08 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-01-31 15:57:08 -0800
commitad8d68dd4390753901b5e1dae4b4c4b44be7fcea (patch)
tree5b8f5e3ca3d698dd7ae764f2833ab7b91726fd93 /color.h
parent0db1b6ce44b2dcae94a4d33c04b606ef819bb78b (diff)
Make subcommands modify $status, and make builtin_set not modify status unless it fails
Diffstat (limited to 'color.h')
-rw-r--r--color.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/color.h b/color.h
index 3bd53cd0..0694d693 100644
--- a/color.h
+++ b/color.h
@@ -135,7 +135,7 @@ public:
/** Returns whether the color is bold */
bool is_bold() const
{
- return !! (flags & flag_bold);
+ return !!(flags & flag_bold);
}
/** Set whether the color is bold */