@@ -2101,6 +2101,10 @@ readfile(fname, sfname, from, lines_to_skip, lines_to_read, eap, flags)
2101
2101
{
2102
2102
for (p = ptr ; p < ptr + size ; ++ p )
2103
2103
{
2104
+ /* Reset the carriage return counter. */
2105
+ if (try_mac )
2106
+ try_mac = 1 ;
2107
+
2104
2108
if (* p == NL )
2105
2109
{
2106
2110
if (!try_unix
@@ -2110,6 +2114,8 @@ readfile(fname, sfname, from, lines_to_skip, lines_to_read, eap, flags)
2110
2114
fileformat = EOL_UNIX ;
2111
2115
break ;
2112
2116
}
2117
+ else if (* p == CAR && try_mac )
2118
+ try_mac ++ ;
2113
2119
}
2114
2120
2115
2121
/* Don't give in to EOL_UNIX if EOL_MAC is more likely */
@@ -2133,6 +2139,10 @@ readfile(fname, sfname, from, lines_to_skip, lines_to_read, eap, flags)
2133
2139
fileformat = EOL_MAC ;
2134
2140
}
2135
2141
}
2142
+ else if (fileformat == EOL_UNKNOWN && try_mac == 1 )
2143
+ /* Looking for CR but found no end-of-line markers at
2144
+ * all: use the default format. */
2145
+ fileformat = default_fileformat ();
2136
2146
}
2137
2147
2138
2148
/* No NL found: may use Mac format */
@@ -8555,21 +8565,22 @@ do_autocmd_event(event, pat, nested, cmd, forceit, group)
8555
8565
is_buflocal = FALSE;
8556
8566
buflocal_nr = 0 ;
8557
8567
8558
- if (patlen >= 7 && STRNCMP (pat , "<buffer" , 7 ) == 0
8568
+ if (patlen >= 8 && STRNCMP (pat , "<buffer" , 7 ) == 0
8559
8569
&& pat [patlen - 1 ] == '>' )
8560
8570
{
8561
- /* Error will be printed only for addition. printing and removing
8562
- * will proceed silently. */
8571
+ /* "<buffer...>": Error will be printed only for addition.
8572
+ * printing and removing will proceed silently. */
8563
8573
is_buflocal = TRUE;
8564
8574
if (patlen == 8 )
8575
+ /* "<buffer>" */
8565
8576
buflocal_nr = curbuf -> b_fnum ;
8566
8577
else if (patlen > 9 && pat [7 ] == '=' )
8567
8578
{
8568
- /* <buffer=abuf> */
8569
- if ( patlen == 13 && STRNICMP ( pat , "<buffer=abuf>" , 13 ))
8579
+ if ( patlen == 13 && STRNICMP ( pat , " <buffer=abuf>" , 13 ) == 0 )
8580
+ /* "<buffer=abuf>" */
8570
8581
buflocal_nr = autocmd_bufnr ;
8571
- /* <buffer=123> */
8572
8582
else if (skipdigits (pat + 8 ) == pat + patlen - 1 )
8583
+ /* "<buffer=123>" */
8573
8584
buflocal_nr = atoi ((char * )pat + 8 );
8574
8585
}
8575
8586
}
@@ -9268,6 +9279,7 @@ apply_autocmds_group(event, fname, fname_io, force, group, buf, eap)
9268
9279
#ifdef FEAT_PROFILE
9269
9280
proftime_T wait_time ;
9270
9281
#endif
9282
+ int did_save_redobuff = FALSE;
9271
9283
9272
9284
/*
9273
9285
* Quickly return if there are no autocommands for this event or
@@ -9468,7 +9480,11 @@ apply_autocmds_group(event, fname, fname_io, force, group, buf, eap)
9468
9480
if (!autocmd_busy )
9469
9481
{
9470
9482
save_search_patterns ();
9471
- saveRedobuff ();
9483
+ if (!ins_compl_active ())
9484
+ {
9485
+ saveRedobuff ();
9486
+ did_save_redobuff = TRUE;
9487
+ }
9472
9488
did_filetype = keep_filetype ;
9473
9489
}
9474
9490
@@ -9568,7 +9584,8 @@ apply_autocmds_group(event, fname, fname_io, force, group, buf, eap)
9568
9584
if (!autocmd_busy )
9569
9585
{
9570
9586
restore_search_patterns ();
9571
- restoreRedobuff ();
9587
+ if (did_save_redobuff )
9588
+ restoreRedobuff ();
9572
9589
did_filetype = FALSE;
9573
9590
while (au_pending_free_buf != NULL )
9574
9591
{
0 commit comments