diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2014-04-15 16:41:51 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-16 20:18:37 -0300 |
commit | 85b5a75a6971254756e1c8b03be3fd5473a31382 (patch) | |
tree | 0f6a91d02f3f24b8e8c0e5c3320108357821f459 /src/fileio.c | |
parent | a53f784738647f1327aca1a3e42f348ec13ef699 (diff) | |
download | rneovim-85b5a75a6971254756e1c8b03be3fd5473a31382.tar.gz rneovim-85b5a75a6971254756e1c8b03be3fd5473a31382.tar.bz2 rneovim-85b5a75a6971254756e1c8b03be3fd5473a31382.zip |
Remove 'textmode' option
'textmode' is an option obsoleted for at least 10 years in favor of
'fileformat'.
Diffstat (limited to 'src/fileio.c')
-rw-r--r-- | src/fileio.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c index 6c4a6e9584..6d7ea37f9a 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -1608,9 +1608,10 @@ rewind_retry: if (fileformat == EOL_UNKNOWN) fileformat = default_fileformat(); - /* if editing a new file: may set p_tx and p_ff */ - if (set_options) + // May set 'p_ff' if editing a new file. + if (set_options) { set_fileformat(fileformat, OPT_LOCAL); + } } } |