commit | 3f68a4136eb99840d739af5133ab31948f273f63 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Oct 28 17:04:21 2022 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Oct 28 17:04:21 2022 +0100 |
tree | 2958410b4afe861957c297b43c8219d36f541c3f | |
parent | 72c8e3c070b30f82bc0d203a62c168e43a13e99b [diff] [blame] |
Add missing entry for the 'endoffile' option.
diff --git a/src/option.c b/src/option.c index 3297810..87764e2 100644 --- a/src/option.c +++ b/src/option.c
@@ -5490,6 +5490,7 @@ #ifdef FEAT_EVAL case PV_TFU: return (char_u *)&(curbuf->b_p_tfu); #endif + case PV_EOF: return (char_u *)&(curbuf->b_p_eof); case PV_EOL: return (char_u *)&(curbuf->b_p_eol); case PV_FIXEOL: return (char_u *)&(curbuf->b_p_fixeol); case PV_ET: return (char_u *)&(curbuf->b_p_et);