diff src/optiondefs.h @ 31055:5a95f0c630b1 v9.0.0862

patch 9.0.0862: default value of 'endoffile' is wrong Commit: https://github.com/vim/vim/commit/0aad88f073602849d1623122eb3c323f8e252def Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 12 11:54:26 2022 +0000 patch 9.0.0862: default value of 'endoffile' is wrong Problem: Default value of 'endoffile' is wrong. Solution: The default must be 'noendoffile'.
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Nov 2022 13:00:05 +0100
parents 3a01529f17f5
children dcde141f2d1e
line wrap: on
line diff
--- a/src/optiondefs.h
+++ b/src/optiondefs.h
@@ -857,7 +857,7 @@ static struct vimoption options[] =
 			    SCTX_INIT},
     {"endoffile",   "eof",  P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
 			    (char_u *)&p_eof, PV_EOF,
-			    {(char_u *)TRUE, (char_u *)0L} SCTX_INIT},
+			    {(char_u *)FALSE, (char_u *)0L} SCTX_INIT},
     {"endofline",   "eol",  P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT,
 			    (char_u *)&p_eol, PV_EOL,
 			    {(char_u *)TRUE, (char_u *)0L} SCTX_INIT},