summaryrefslogtreecommitdiff
path: root/src/query.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-11-11 01:16:42 -0500
committerJohn Wiegley <johnw@newartisans.com>2009-11-11 01:16:42 -0500
commitb62b03335f33a6a0ae422605b8b6271add849aa6 (patch)
tree34cd1e2453c8b03057b969e6d560e3d063a50a8d /src/query.cc
parentacb69193d8b1edceb1b53725306a1533dbfcb15c (diff)
downloadfork-ledger-b62b03335f33a6a0ae422605b8b6271add849aa6.tar.gz
fork-ledger-b62b03335f33a6a0ae422605b8b6271add849aa6.tar.bz2
fork-ledger-b62b03335f33a6a0ae422605b8b6271add849aa6.zip
Removed "account" as a report query keyword
Diffstat (limited to 'src/query.cc')
-rw-r--r--src/query.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/query.cc b/src/query.cc
index e48e65b5..de1c5631 100644
--- a/src/query.cc
+++ b/src/query.cc
@@ -155,8 +155,6 @@ query_t::lexer_t::token_t query_t::lexer_t::next_token()
return token_t(token_t::TOK_PAYEE);
else if (ident == "note")
return token_t(token_t::TOK_NOTE);
- else if (ident == "account")
- return token_t(token_t::TOK_ACCOUNT);
else if (ident == "tag")
return token_t(token_t::TOK_META);
else if (ident == "meta")