diff options
author | John Wiegley <johnw@newartisans.com> | 2008-08-01 03:44:22 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-08-01 03:44:22 -0400 |
commit | ea3b386062e62379c546239f2e95cb1e11c56d23 (patch) | |
tree | f200790541093b401b3a40af000a90daff7b6cb5 /report.cc | |
parent | 8ed99e621daccdebfe4fd81d9b3744ed1cdb375f (diff) | |
download | fork-ledger-ea3b386062e62379c546239f2e95cb1e11c56d23.tar.gz fork-ledger-ea3b386062e62379c546239f2e95cb1e11c56d23.tar.bz2 fork-ledger-ea3b386062e62379c546239f2e95cb1e11c56d23.zip |
Added a new 'format' debugging command, which dissects the formatting
expression in its argument.
Diffstat (limited to 'report.cc')
-rw-r--r-- | report.cc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -352,8 +352,8 @@ expr_t::ptr_op_t report_t::lookup(const string& name) const char * p = name.c_str(); switch (*p) { case 'o': - if (std::strncmp(p, "option_", 7) == 0) { - p = p + 7; + if (std::strncmp(p, "opt_", 4) == 0) { + p = p + 4; switch (*p) { case 'a': #if 0 |