From a3a877284a5d5bc5683c6f818037970b81cf664f Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Thu, 1 Mar 2012 21:18:49 -0600 Subject: Was missing an assignment of context.scope --- src/textual.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/textual.cc') diff --git a/src/textual.cc b/src/textual.cc index 51b5849b..839e871b 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -743,11 +743,13 @@ void instance_t::include_directive(char * line) if (glob.match(base)) { journal_t * journal = context.journal; account_t * master = context.master; + account_t * scope = context.scope; context_stack.push(*iter); context_stack.get_current().journal = journal; context_stack.get_current().master = master; + context_stack.get_current().scope = scope; try { instance_t instance(context_stack, context_stack.get_current(), this); -- cgit v1.2.3