diff options
author | John Wiegley <johnw@newartisans.com> | 2012-02-28 00:08:21 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-02-28 00:08:21 -0600 |
commit | 6d04f605738fe47477fdc95342008dfe7d091c1a (patch) | |
tree | 274831f9fff040b57f7f484186c9f9f2cc4838bb /src | |
parent | acb3c573323cb21d5a649b16cadd0d4b50cdf730 (diff) | |
download | fork-ledger-6d04f605738fe47477fdc95342008dfe7d091c1a.tar.gz fork-ledger-6d04f605738fe47477fdc95342008dfe7d091c1a.tar.bz2 fork-ledger-6d04f605738fe47477fdc95342008dfe7d091c1a.zip |
Fixed display problem in an error message
Diffstat (limited to 'src')
-rw-r--r-- | src/textual.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/textual.cc b/src/textual.cc index 82065f3c..f6cbf070 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -853,12 +853,12 @@ void instance_t::end_apply_directive(char * kind) if (context.apply_stack.size() <= 1) throw_(std::runtime_error, - _("'end apply%1' found, but no enclosing 'apply%2' directive") + _("'end apply %1' found, but no enclosing 'apply %2' directive") << name << name); if (name != " " && name != context.apply_stack.front().label) throw_(std::runtime_error, - _("'end apply%1' directive does not match 'apply %2' directive") + _("'end apply %1' directive does not match 'apply %2' directive") << name << context.apply_stack.front().label); context.apply_stack.pop_front(); |