Skip to content

Commit

Permalink
Merge pull request neovim#4153 from watiko/vim-7.4.643
Browse files Browse the repository at this point in the history
vim-patch:7.4.643
  • Loading branch information
justinmk committed Feb 3, 2016
2 parents a4ea4da + f104ce2 commit 8e92b7f
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 28 deletions.
10 changes: 5 additions & 5 deletions src/nvim/fileio.c
Original file line number Diff line number Diff line change
Expand Up @@ -1543,12 +1543,12 @@ readfile (
if (fileformat == EOL_UNKNOWN) {
/* First try finding a NL, for Dos and Unix */
if (try_dos || try_unix) {
for (p = ptr; p < ptr + size; ++p) {
// Reset the carriage return counter.
if (try_mac) {
try_mac = 1;
}
// Reset the carriage return counter.
if (try_mac) {
try_mac = 1;
}

for (p = ptr; p < ptr + size; ++p) {
if (*p == NL) {
if (!try_unix
|| (try_dos && p > ptr && p[-1] == CAR))
Expand Down
58 changes: 36 additions & 22 deletions src/nvim/testdir/test30.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,27 @@ STARTTEST
:" first write three test files, one in each format
:set fileformat=unix
:set fileformats=
:/^1/w! XX1
:/^2/w! XX2
:/^3/w! XX3
:/^4/w! XX4
:/^5/w! XX5
:/^6/w! XX6
:/^7/w! XX7
:/^8/w! XX8
:/^9/w! XX9
:/^10/w! XX10
:/^unix/;/eof/-1w! XXUnix
:/^dos/;/eof/-1w! XXDos
:set bin noeol
:$w! XXMac
Gonoeol
:$w! XXEol
:set nobin eol
:enew!
:bwipe XXUnix XXDos XXMac
:" create mixed format files
:if has("win32")
: !copy /b XXUnix+XXDos XXUxDs
: !copy /b XXUnix+XXMac XXUxMac
: !copy /b XXDos+XXMac XXDosMac
: !copy /b XXMac+XXEol XXMacEol
: !copy /b XXUnix+XXDos+XXMac XXUxDsMc
:else
: !cat XXUnix XXDos >XXUxDs
: !cat XXUnix XXMac >XXUxMac
: !cat XXDos XXMac >XXDosMac
: !cat XXMac XXEol >XXMacEol
: !cat XXUnix XXDos XXMac >XXUxDsMc
:endif
:"
Expand Down Expand Up @@ -97,26 +92,48 @@ STARTTEST
:e! XXDosMac
:w! XXtt53
:bwipe XXDosMac
:e! XXEol
ggO=&ffs
:=&ff
:w! XXtt54
:bwipe XXEol
:set fileformats=dos,mac
:e! XXUxDs
:w! XXtt61
:bwipe XXUxDs
:e! XXUxMac
:w! XXtt62
ggO=&ffs
:=&ff
:w! XXtt62
:bwipe XXUxMac
:e! XXUxDsMc
:w! XXtt63
:bwipe XXUxDsMc
:e! XXMacEol
ggO=&ffs
:=&ff
:w! XXtt64
:bwipe XXMacEol
:"
:" try reading and writing with 'fileformats' set to three formats
:set fileformats=unix,dos,mac
:e! XXUxDsMc
:w! XXtt71
:bwipe XXUxDsMc
:e! XXEol
ggO=&ffs
:=&ff
:w! XXtt72
:bwipe XXEol
:set fileformats=mac,dos,unix
:e! XXUxDsMc
:w! XXtt81
:bwipe XXUxDsMc
:e! XXEol
ggO=&ffs
:=&ff
:w! XXtt82
:bwipe XXEol
:" try with 'binary' set
:set fileformats=mac,unix,dos
:set binary
Expand Down Expand Up @@ -150,11 +167,15 @@ ggdGaEND:w >>XXtt01
:w >>XXtt51
:w >>XXtt52
:w >>XXtt53
:w >>XXtt54
:w >>XXtt61
:w >>XXtt62
:w >>XXtt63
:w >>XXtt64
:w >>XXtt71
:w >>XXtt72
:w >>XXtt81
:w >>XXtt82
:w >>XXtt91
:w >>XXtt92
:w >>XXtt93
Expand All @@ -181,11 +202,15 @@ Go4:$r XXtt41
Go5:$r XXtt51
:$r XXtt52
:$r XXtt53
:$r XXtt54
Go6:$r XXtt61
:$r XXtt62
:$r XXtt63
:$r XXtt64
Go7:$r XXtt71
:$r XXtt72
Go8:$r XXtt81
:$r XXtt82
Go9:$r XXtt91
:$r XXtt92
:$r XXtt93
Expand All @@ -195,17 +220,6 @@ Go10:$r XXUnix
:qa!
ENDTEST

1
2
3
4
5
6
7
8
9
10

unix
unix
eof
Expand Down
9 changes: 9 additions & 0 deletions src/nvim/testdir/test30.ok
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,16 @@ END
dos
dos
macmacEND
unix,mac:unix
noeol
END
6
unix
unix
dos
dos
END
dos,mac:dos
unix
unix
macmac
Expand All @@ -86,20 +90,25 @@ dos
dos
macmac
END
dos,mac:macmacmacnoeolEND
7
unix
unix
dos
dos
macmac
END
unix,dos,mac:unix
noeol
END
8
unix
unix
dos
dos
macmac
END
mac,dos,unix:macnoeolEND
9
unix
unix
Expand Down
2 changes: 1 addition & 1 deletion src/nvim/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ static int included_patches[] = {
646,
645,
// 644 NA
// 643,
643,
642,
// 641 NA
640,
Expand Down

0 comments on commit 8e92b7f

Please sign in to comment.