From 6d04f605738fe47477fdc95342008dfe7d091c1a Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 28 Feb 2012 00:08:21 -0600 Subject: Fixed display problem in an error message --- src/textual.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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(); -- cgit v1.2.3