summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-10-28 17:04:21 +0100
committerBram Moolenaar <Bram@vim.org>2022-10-28 17:04:21 +0100
commit3f68a4136eb99840d739af5133ab31948f273f63 (patch)
tree2958410b4afe861957c297b43c8219d36f541c3f
parent72c8e3c070b30f82bc0d203a62c168e43a13e99b (diff)
downloadvim-git-3f68a4136eb99840d739af5133ab31948f273f63.tar.gz
Add missing entry for the 'endoffile' option.
-rw-r--r--src/option.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/option.c b/src/option.c
index 329781008..87764e231 100644
--- a/src/option.c
+++ b/src/option.c
@@ -5490,6 +5490,7 @@ get_varp(struct vimoption *p)
#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);