From 71258f1fe9ec1e1ca3f11518914aad46fc54db20 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sat, 7 Feb 2009 04:55:42 -0400 Subject: [PATCH] Fixed a problem that was causing -l EXPR to trigger on assertion. --- src/option.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/option.h b/src/option.h index 2bb9e342..f94ef783 100644 --- a/src/option.h +++ b/src/option.h @@ -133,8 +133,8 @@ public: } virtual value_t operator()(call_scope_t& args) { - handled = true; handler(args); + handled = true; return true; } };