diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-07 04:55:42 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-07 04:55:42 -0400 |
commit | 71258f1fe9ec1e1ca3f11518914aad46fc54db20 (patch) | |
tree | 06920ac82ee6058c81ef6699fd9f125fd1e49cc3 /src/option.h | |
parent | 011f35b730817034168369be1a7bd62b31146b64 (diff) | |
download | fork-ledger-71258f1fe9ec1e1ca3f11518914aad46fc54db20.tar.gz fork-ledger-71258f1fe9ec1e1ca3f11518914aad46fc54db20.tar.bz2 fork-ledger-71258f1fe9ec1e1ca3f11518914aad46fc54db20.zip |
Fixed a problem that was causing -l EXPR to trigger on assertion.
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; } }; |