diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-06-28 10:03:45 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-06-28 10:03:45 +0000 |
commit | 786b1dc2a48473a6e46a478632a99a321b4ec761 (patch) | |
tree | 92f603dfc16dafc6ef332b01bfc0f4bf0477cedd /src/syntax.c | |
parent | 96bb621f25c78328c642f3e20abae8a462e16d24 (diff) | |
download | vim-786b1dc2a48473a6e46a478632a99a321b4ec761.zip |
updated for version 7.1-013
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c index 5d43ede4e..c023486c3 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -4460,8 +4460,8 @@ syn_cmd_include(eap, syncing) current_syn_inc_tag = ++running_syn_inc_tag; prev_toplvl_grp = curbuf->b_syn_topgrp; curbuf->b_syn_topgrp = sgl_id; - if (source ? do_source(eap->arg, FALSE, FALSE) == FAIL - : source_runtime(eap->arg, DOSO_NONE) == FAIL) + if (source ? do_source(eap->arg, FALSE, DOSO_NONE) == FAIL + : source_runtime(eap->arg, TRUE) == FAIL) EMSG2(_(e_notopen), eap->arg); curbuf->b_syn_topgrp = prev_toplvl_grp; current_syn_inc_tag = prev_syn_inc_tag; |