diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-10-01 19:43:52 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-10-01 19:43:52 +0100 |
commit | a4e0b9785e409e9e660171cea76dfcc5fdafad9b (patch) | |
tree | 3323913d9bdc9cd09029b1314a77c4a5e8191bbf /src/scriptfile.c | |
parent | b850c39676db21c6f1aa3afed0e2e48d407dd60e (diff) | |
download | vim-git-a4e0b9785e409e9e660171cea76dfcc5fdafad9b.tar.gz |
patch 9.0.0634: evaluating "expr" options has more overhead than neededv9.0.0634
Problem: Evaluating "expr" options has more overhead than needed.
Solution: Use call_simple_func() for 'foldtext', 'includeexpr', 'printexpr',
"expr" of 'spellsuggest', 'diffexpr', 'patchexpr', 'balloonexpr',
'formatexpr', 'indentexpr' and 'charconvert'.
Diffstat (limited to 'src/scriptfile.c')
-rw-r--r-- | src/scriptfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scriptfile.c b/src/scriptfile.c index bdb792236..9623ea0ad 100644 --- a/src/scriptfile.c +++ b/src/scriptfile.c @@ -810,7 +810,7 @@ load_pack_plugin(char_u *fname) // If runtime/filetype.vim wasn't loaded yet, the scripts will be // found when it loads. - if (cmd != NULL && eval_to_number(cmd) > 0) + if (cmd != NULL && eval_to_number(cmd, FALSE) > 0) { do_cmdline_cmd((char_u *)"augroup filetypedetect"); vim_snprintf((char *)pat, len, ftpat, ffname); |