diff options
Diffstat (limited to 'textual.cc')
-rw-r--r-- | textual.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -131,7 +131,7 @@ void parse_amount(const char * text, amount_t& amt, unsigned short flags, { char * altbuf = NULL; - if (*text) { + if (*text && *text != '(') { bool in_quote = false; for (const char * p = text + 1; *p; p++) if (*p == '"') { |