xref: /vim-8.2.3635/src/buffer.c (revision bc2eada5)
1 /* vi:set ts=8 sts=4 sw=4 noet:
2  *
3  * VIM - Vi IMproved	by Bram Moolenaar
4  *
5  * Do ":help uganda"  in Vim to read copying and usage conditions.
6  * Do ":help credits" in Vim to see a list of people who contributed.
7  * See README.txt for an overview of the Vim source code.
8  */
9 
10 /*
11  * buffer.c: functions for dealing with the buffer structure
12  */
13 
14 /*
15  * The buffer list is a double linked list of all buffers.
16  * Each buffer can be in one of these states:
17  * never loaded: BF_NEVERLOADED is set, only the file name is valid
18  *   not loaded: b_ml.ml_mfp == NULL, no memfile allocated
19  *	 hidden: b_nwindows == 0, loaded but not displayed in a window
20  *	 normal: loaded and displayed in a window
21  *
22  * Instead of storing file names all over the place, each file name is
23  * stored in the buffer list. It can be referenced by a number.
24  *
25  * The current implementation remembers all file names ever used.
26  */
27 
28 #include "vim.h"
29 
30 #if defined(FEAT_CMDL_COMPL) || defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL)
31 static char_u	*buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case);
32 # define HAVE_BUFLIST_MATCH
33 static char_u	*fname_match(regmatch_T *rmp, char_u *name, int ignore_case);
34 #endif
35 static void	buflist_setfpos(buf_T *buf, win_T *win, linenr_T lnum, colnr_T col, int copy_options);
36 static wininfo_T *find_wininfo(buf_T *buf, int skip_diff_buffer);
37 #ifdef UNIX
38 static buf_T	*buflist_findname_stat(char_u *ffname, stat_T *st);
39 static int	otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp);
40 static int	buf_same_ino(buf_T *buf, stat_T *stp);
41 #else
42 static int	otherfile_buf(buf_T *buf, char_u *ffname);
43 #endif
44 #ifdef FEAT_TITLE
45 static int	ti_change(char_u *str, char_u **last);
46 #endif
47 static int	append_arg_number(win_T *wp, char_u *buf, int buflen, int add_file);
48 static void	free_buffer(buf_T *);
49 static void	free_buffer_stuff(buf_T *buf, int free_options);
50 static void	clear_wininfo(buf_T *buf);
51 
52 #ifdef UNIX
53 # define dev_T dev_t
54 #else
55 # define dev_T unsigned
56 #endif
57 
58 #if defined(FEAT_SIGNS)
59 static void insert_sign(buf_T *buf, signlist_T *prev, signlist_T *next, int id, linenr_T lnum, int typenr);
60 #endif
61 
62 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
63 static char *msg_loclist = N_("[Location List]");
64 static char *msg_qflist = N_("[Quickfix List]");
65 #endif
66 #ifdef FEAT_AUTOCMD
67 static char *e_auabort = N_("E855: Autocommands caused command to abort");
68 #endif
69 
70 /* Number of times free_buffer() was called. */
71 static int	buf_free_count = 0;
72 
73 /* Read data from buffer for retrying. */
74     static int
75 read_buffer(
76     int		read_stdin,	    /* read file from stdin, otherwise fifo */
77     exarg_T	*eap,		    /* for forced 'ff' and 'fenc' or NULL */
78     int		flags)		    /* extra flags for readfile() */
79 {
80     int		retval = OK;
81     linenr_T	line_count;
82 
83     /*
84      * Read from the buffer which the text is already filled in and append at
85      * the end.  This makes it possible to retry when 'fileformat' or
86      * 'fileencoding' was guessed wrong.
87      */
88     line_count = curbuf->b_ml.ml_line_count;
89     retval = readfile(
90 	    read_stdin ? NULL : curbuf->b_ffname,
91 	    read_stdin ? NULL : curbuf->b_fname,
92 	    (linenr_T)line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap,
93 	    flags | READ_BUFFER);
94     if (retval == OK)
95     {
96 	/* Delete the binary lines. */
97 	while (--line_count >= 0)
98 	    ml_delete((linenr_T)1, FALSE);
99     }
100     else
101     {
102 	/* Delete the converted lines. */
103 	while (curbuf->b_ml.ml_line_count > line_count)
104 	    ml_delete(line_count, FALSE);
105     }
106     /* Put the cursor on the first line. */
107     curwin->w_cursor.lnum = 1;
108     curwin->w_cursor.col = 0;
109 
110     if (read_stdin)
111     {
112 	/* Set or reset 'modified' before executing autocommands, so that
113 	 * it can be changed there. */
114 	if (!readonlymode && !bufempty())
115 	    changed();
116 	else if (retval != FAIL)
117 	    unchanged(curbuf, FALSE);
118 
119 #ifdef FEAT_AUTOCMD
120 # ifdef FEAT_EVAL
121 	apply_autocmds_retval(EVENT_STDINREADPOST, NULL, NULL, FALSE,
122 							curbuf, &retval);
123 # else
124 	apply_autocmds(EVENT_STDINREADPOST, NULL, NULL, FALSE, curbuf);
125 # endif
126 #endif
127     }
128     return retval;
129 }
130 
131 /*
132  * Open current buffer, that is: open the memfile and read the file into
133  * memory.
134  * Return FAIL for failure, OK otherwise.
135  */
136     int
137 open_buffer(
138     int		read_stdin,	    /* read file from stdin */
139     exarg_T	*eap,		    /* for forced 'ff' and 'fenc' or NULL */
140     int		flags)		    /* extra flags for readfile() */
141 {
142     int		retval = OK;
143 #ifdef FEAT_AUTOCMD
144     bufref_T	old_curbuf;
145 #endif
146 #ifdef FEAT_SYN_HL
147     long	old_tw = curbuf->b_p_tw;
148 #endif
149     int		read_fifo = FALSE;
150 
151     /*
152      * The 'readonly' flag is only set when BF_NEVERLOADED is being reset.
153      * When re-entering the same buffer, it should not change, because the
154      * user may have reset the flag by hand.
155      */
156     if (readonlymode && curbuf->b_ffname != NULL
157 					&& (curbuf->b_flags & BF_NEVERLOADED))
158 	curbuf->b_p_ro = TRUE;
159 
160     if (ml_open(curbuf) == FAIL)
161     {
162 	/*
163 	 * There MUST be a memfile, otherwise we can't do anything
164 	 * If we can't create one for the current buffer, take another buffer
165 	 */
166 	close_buffer(NULL, curbuf, 0, FALSE);
167 	FOR_ALL_BUFFERS(curbuf)
168 	    if (curbuf->b_ml.ml_mfp != NULL)
169 		break;
170 	/*
171 	 * if there is no memfile at all, exit
172 	 * This is OK, since there are no changes to lose.
173 	 */
174 	if (curbuf == NULL)
175 	{
176 	    EMSG(_("E82: Cannot allocate any buffer, exiting..."));
177 	    getout(2);
178 	}
179 	EMSG(_("E83: Cannot allocate buffer, using other one..."));
180 	enter_buffer(curbuf);
181 #ifdef FEAT_SYN_HL
182 	if (old_tw != curbuf->b_p_tw)
183 	    check_colorcolumn(curwin);
184 #endif
185 	return FAIL;
186     }
187 
188 #ifdef FEAT_AUTOCMD
189     /* The autocommands in readfile() may change the buffer, but only AFTER
190      * reading the file. */
191     set_bufref(&old_curbuf, curbuf);
192     modified_was_set = FALSE;
193 #endif
194 
195     /* mark cursor position as being invalid */
196     curwin->w_valid = 0;
197 
198     if (curbuf->b_ffname != NULL
199 #ifdef FEAT_NETBEANS_INTG
200 	    && netbeansReadFile
201 #endif
202        )
203     {
204 	int old_msg_silent = msg_silent;
205 #ifdef UNIX
206 	int save_bin = curbuf->b_p_bin;
207 	int perm;
208 #endif
209 #ifdef FEAT_NETBEANS_INTG
210 	int oldFire = netbeansFireChanges;
211 
212 	netbeansFireChanges = 0;
213 #endif
214 #ifdef UNIX
215 	perm = mch_getperm(curbuf->b_ffname);
216 	if (perm >= 0 && (0
217 # ifdef S_ISFIFO
218 		      || S_ISFIFO(perm)
219 # endif
220 # ifdef S_ISSOCK
221 		      || S_ISSOCK(perm)
222 # endif
223 # ifdef OPEN_CHR_FILES
224 		      || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
225 # endif
226 		    ))
227 		read_fifo = TRUE;
228 	if (read_fifo)
229 	    curbuf->b_p_bin = TRUE;
230 #endif
231 	if (shortmess(SHM_FILEINFO))
232 	    msg_silent = 1;
233 	retval = readfile(curbuf->b_ffname, curbuf->b_fname,
234 		  (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
235 		  flags | READ_NEW | (read_fifo ? READ_FIFO : 0));
236 #ifdef UNIX
237 	if (read_fifo)
238 	{
239 	    curbuf->b_p_bin = save_bin;
240 	    if (retval == OK)
241 		retval = read_buffer(FALSE, eap, flags);
242 	}
243 #endif
244 	msg_silent = old_msg_silent;
245 #ifdef FEAT_NETBEANS_INTG
246 	netbeansFireChanges = oldFire;
247 #endif
248 	/* Help buffer is filtered. */
249 	if (curbuf->b_help)
250 	    fix_help_buffer();
251     }
252     else if (read_stdin)
253     {
254 	int	save_bin = curbuf->b_p_bin;
255 
256 	/*
257 	 * First read the text in binary mode into the buffer.
258 	 * Then read from that same buffer and append at the end.  This makes
259 	 * it possible to retry when 'fileformat' or 'fileencoding' was
260 	 * guessed wrong.
261 	 */
262 	curbuf->b_p_bin = TRUE;
263 	retval = readfile(NULL, NULL, (linenr_T)0,
264 		  (linenr_T)0, (linenr_T)MAXLNUM, NULL,
265 		  flags | (READ_NEW + READ_STDIN));
266 	curbuf->b_p_bin = save_bin;
267 	if (retval == OK)
268 	    retval = read_buffer(TRUE, eap, flags);
269     }
270 
271     /* if first time loading this buffer, init b_chartab[] */
272     if (curbuf->b_flags & BF_NEVERLOADED)
273     {
274 	(void)buf_init_chartab(curbuf, FALSE);
275 #ifdef FEAT_CINDENT
276 	parse_cino(curbuf);
277 #endif
278     }
279 
280     /*
281      * Set/reset the Changed flag first, autocmds may change the buffer.
282      * Apply the automatic commands, before processing the modelines.
283      * So the modelines have priority over auto commands.
284      */
285     /* When reading stdin, the buffer contents always needs writing, so set
286      * the changed flag.  Unless in readonly mode: "ls | gview -".
287      * When interrupted and 'cpoptions' contains 'i' set changed flag. */
288     if ((got_int && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
289 #ifdef FEAT_AUTOCMD
290 		|| modified_was_set	/* ":set modified" used in autocmd */
291 # ifdef FEAT_EVAL
292 		|| (aborting() && vim_strchr(p_cpo, CPO_INTMOD) != NULL)
293 # endif
294 #endif
295        )
296 	changed();
297     else if (retval != FAIL && !read_stdin && !read_fifo)
298 	unchanged(curbuf, FALSE);
299     save_file_ff(curbuf);		/* keep this fileformat */
300 
301     /* require "!" to overwrite the file, because it wasn't read completely */
302 #ifdef FEAT_EVAL
303     if (aborting())
304 #else
305     if (got_int)
306 #endif
307 	curbuf->b_flags |= BF_READERR;
308 
309 #ifdef FEAT_FOLDING
310     /* Need to update automatic folding.  Do this before the autocommands,
311      * they may use the fold info. */
312     foldUpdateAll(curwin);
313 #endif
314 
315 #ifdef FEAT_AUTOCMD
316     /* need to set w_topline, unless some autocommand already did that. */
317     if (!(curwin->w_valid & VALID_TOPLINE))
318     {
319 	curwin->w_topline = 1;
320 # ifdef FEAT_DIFF
321 	curwin->w_topfill = 0;
322 # endif
323     }
324 # ifdef FEAT_EVAL
325     apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, &retval);
326 # else
327     apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
328 # endif
329 #endif
330 
331     if (retval != FAIL)
332     {
333 #ifdef FEAT_AUTOCMD
334 	/*
335 	 * The autocommands may have changed the current buffer.  Apply the
336 	 * modelines to the correct buffer, if it still exists and is loaded.
337 	 */
338 	if (bufref_valid(&old_curbuf) && old_curbuf.br_buf->b_ml.ml_mfp != NULL)
339 	{
340 	    aco_save_T	aco;
341 
342 	    /* Go to the buffer that was opened. */
343 	    aucmd_prepbuf(&aco, old_curbuf.br_buf);
344 #endif
345 	    do_modelines(0);
346 	    curbuf->b_flags &= ~(BF_CHECK_RO | BF_NEVERLOADED);
347 
348 #ifdef FEAT_AUTOCMD
349 # ifdef FEAT_EVAL
350 	    apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
351 								    &retval);
352 # else
353 	    apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
354 # endif
355 
356 	    /* restore curwin/curbuf and a few other things */
357 	    aucmd_restbuf(&aco);
358 	}
359 #endif
360     }
361 
362     return retval;
363 }
364 
365 /*
366  * Store "buf" in "bufref" and set the free count.
367  */
368     void
369 set_bufref(bufref_T *bufref, buf_T *buf)
370 {
371     bufref->br_buf = buf;
372     bufref->br_buf_free_count = buf_free_count;
373 }
374 
375 /*
376  * Return TRUE if "bufref->br_buf" points to a valid buffer.
377  * Only goes through the buffer list if buf_free_count changed.
378  */
379     int
380 bufref_valid(bufref_T *bufref)
381 {
382     return bufref->br_buf_free_count == buf_free_count
383 					   ? TRUE : buf_valid(bufref->br_buf);
384 }
385 
386 /*
387  * Return TRUE if "buf" points to a valid buffer (in the buffer list).
388  * This can be slow if there are many buffers, prefer using bufref_valid().
389  */
390     int
391 buf_valid(buf_T *buf)
392 {
393     buf_T	*bp;
394 
395     /* Assume that we more often have a recent buffer, start with the last
396      * one. */
397     for (bp = lastbuf; bp != NULL; bp = bp->b_prev)
398 	if (bp == buf)
399 	    return TRUE;
400     return FALSE;
401 }
402 
403 /*
404  * A hash table used to quickly lookup a buffer by its number.
405  */
406 static hashtab_T buf_hashtab;
407 
408     static void
409 buf_hashtab_add(buf_T *buf)
410 {
411     sprintf((char *)buf->b_key, "%x", buf->b_fnum);
412     if (hash_add(&buf_hashtab, buf->b_key) == FAIL)
413 	EMSG(_("E931: Buffer cannot be registered"));
414 }
415 
416     static void
417 buf_hashtab_remove(buf_T *buf)
418 {
419     hashitem_T *hi = hash_find(&buf_hashtab, buf->b_key);
420 
421     if (!HASHITEM_EMPTY(hi))
422 	hash_remove(&buf_hashtab, hi);
423 }
424 
425 /*
426  * Close the link to a buffer.
427  * "action" is used when there is no longer a window for the buffer.
428  * It can be:
429  * 0			buffer becomes hidden
430  * DOBUF_UNLOAD		buffer is unloaded
431  * DOBUF_DELETE		buffer is unloaded and removed from buffer list
432  * DOBUF_WIPE		buffer is unloaded and really deleted
433  * When doing all but the first one on the current buffer, the caller should
434  * get a new buffer very soon!
435  *
436  * The 'bufhidden' option can force freeing and deleting.
437  *
438  * When "abort_if_last" is TRUE then do not close the buffer if autocommands
439  * cause there to be only one window with this buffer.  e.g. when ":quit" is
440  * supposed to close the window but autocommands close all other windows.
441  */
442     void
443 close_buffer(
444     win_T	*win,		/* if not NULL, set b_last_cursor */
445     buf_T	*buf,
446     int		action,
447     int		abort_if_last UNUSED)
448 {
449 #ifdef FEAT_AUTOCMD
450     int		is_curbuf;
451     int		nwindows;
452     bufref_T	bufref;
453 # ifdef FEAT_WINDOWS
454     int		is_curwin = (curwin != NULL && curwin->w_buffer == buf);
455     win_T	*the_curwin = curwin;
456     tabpage_T	*the_curtab = curtab;
457 # endif
458 #endif
459     int		unload_buf = (action != 0);
460     int		del_buf = (action == DOBUF_DEL || action == DOBUF_WIPE);
461     int		wipe_buf = (action == DOBUF_WIPE);
462 
463 #ifdef FEAT_QUICKFIX
464     /*
465      * Force unloading or deleting when 'bufhidden' says so.
466      * The caller must take care of NOT deleting/freeing when 'bufhidden' is
467      * "hide" (otherwise we could never free or delete a buffer).
468      */
469     if (buf->b_p_bh[0] == 'd')		/* 'bufhidden' == "delete" */
470     {
471 	del_buf = TRUE;
472 	unload_buf = TRUE;
473     }
474     else if (buf->b_p_bh[0] == 'w')	/* 'bufhidden' == "wipe" */
475     {
476 	del_buf = TRUE;
477 	unload_buf = TRUE;
478 	wipe_buf = TRUE;
479     }
480     else if (buf->b_p_bh[0] == 'u')	/* 'bufhidden' == "unload" */
481 	unload_buf = TRUE;
482 #endif
483 
484 #ifdef FEAT_AUTOCMD
485     /* Disallow deleting the buffer when it is locked (already being closed or
486      * halfway a command that relies on it). Unloading is allowed. */
487     if (buf->b_locked > 0 && (del_buf || wipe_buf))
488     {
489 	EMSG(_("E937: Attempt to delete a buffer that is in use"));
490 	return;
491     }
492 #endif
493 
494     if (win != NULL
495 #ifdef FEAT_WINDOWS
496 	&& win_valid_any_tab(win) /* in case autocommands closed the window */
497 #endif
498 	    )
499     {
500 	/* Set b_last_cursor when closing the last window for the buffer.
501 	 * Remember the last cursor position and window options of the buffer.
502 	 * This used to be only for the current window, but then options like
503 	 * 'foldmethod' may be lost with a ":only" command. */
504 	if (buf->b_nwindows == 1)
505 	    set_last_cursor(win);
506 	buflist_setfpos(buf, win,
507 		    win->w_cursor.lnum == 1 ? 0 : win->w_cursor.lnum,
508 		    win->w_cursor.col, TRUE);
509     }
510 
511 #ifdef FEAT_AUTOCMD
512     set_bufref(&bufref, buf);
513 
514     /* When the buffer is no longer in a window, trigger BufWinLeave */
515     if (buf->b_nwindows == 1)
516     {
517 	++buf->b_locked;
518 	if (apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname, buf->b_fname,
519 								  FALSE, buf)
520 		&& !bufref_valid(&bufref))
521 	{
522 	    /* Autocommands deleted the buffer. */
523 aucmd_abort:
524 	    EMSG(_(e_auabort));
525 	    return;
526 	}
527 	--buf->b_locked;
528 	if (abort_if_last && one_window())
529 	    /* Autocommands made this the only window. */
530 	    goto aucmd_abort;
531 
532 	/* When the buffer becomes hidden, but is not unloaded, trigger
533 	 * BufHidden */
534 	if (!unload_buf)
535 	{
536 	    ++buf->b_locked;
537 	    if (apply_autocmds(EVENT_BUFHIDDEN, buf->b_fname, buf->b_fname,
538 								  FALSE, buf)
539 		    && !bufref_valid(&bufref))
540 		/* Autocommands deleted the buffer. */
541 		goto aucmd_abort;
542 	    --buf->b_locked;
543 	    if (abort_if_last && one_window())
544 		/* Autocommands made this the only window. */
545 		goto aucmd_abort;
546 	}
547 # ifdef FEAT_EVAL
548 	if (aborting())	    /* autocmds may abort script processing */
549 	    return;
550 # endif
551     }
552 
553 # ifdef FEAT_WINDOWS
554     /* If the buffer was in curwin and the window has changed, go back to that
555      * window, if it still exists.  This avoids that ":edit x" triggering a
556      * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
557     if (is_curwin && curwin != the_curwin &&  win_valid_any_tab(the_curwin))
558     {
559 	block_autocmds();
560 	goto_tabpage_win(the_curtab, the_curwin);
561 	unblock_autocmds();
562     }
563 # endif
564 
565     nwindows = buf->b_nwindows;
566 #endif
567 
568     /* decrease the link count from windows (unless not in any window) */
569     if (buf->b_nwindows > 0)
570 	--buf->b_nwindows;
571 
572     /* Return when a window is displaying the buffer or when it's not
573      * unloaded. */
574     if (buf->b_nwindows > 0 || !unload_buf)
575 	return;
576 
577     /* Always remove the buffer when there is no file name. */
578     if (buf->b_ffname == NULL)
579 	del_buf = TRUE;
580 
581     /* When closing the current buffer stop Visual mode before freeing
582      * anything. */
583     if (buf == curbuf && VIsual_active
584 #if defined(EXITFREE)
585 	    && !entered_free_all_mem
586 #endif
587 	    )
588 	end_visual_mode();
589 
590     /*
591      * Free all things allocated for this buffer.
592      * Also calls the "BufDelete" autocommands when del_buf is TRUE.
593      */
594 #ifdef FEAT_AUTOCMD
595     /* Remember if we are closing the current buffer.  Restore the number of
596      * windows, so that autocommands in buf_freeall() don't get confused. */
597     is_curbuf = (buf == curbuf);
598     buf->b_nwindows = nwindows;
599 #endif
600 
601     buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0));
602 
603 #ifdef FEAT_AUTOCMD
604     /* Autocommands may have deleted the buffer. */
605     if (!bufref_valid(&bufref))
606 	return;
607 # ifdef FEAT_EVAL
608     if (aborting())	    /* autocmds may abort script processing */
609 	return;
610 # endif
611 
612     /*
613      * It's possible that autocommands change curbuf to the one being deleted.
614      * This might cause the previous curbuf to be deleted unexpectedly.  But
615      * in some cases it's OK to delete the curbuf, because a new one is
616      * obtained anyway.  Therefore only return if curbuf changed to the
617      * deleted buffer.
618      */
619     if (buf == curbuf && !is_curbuf)
620 	return;
621 
622     if (
623 #ifdef FEAT_WINDOWS
624 	win_valid_any_tab(win) &&
625 #else
626 	win != NULL &&
627 #endif
628 			  win->w_buffer == buf)
629 	win->w_buffer = NULL;  /* make sure we don't use the buffer now */
630 
631     /* Autocommands may have opened or closed windows for this buffer.
632      * Decrement the count for the close we do here. */
633     if (buf->b_nwindows > 0)
634 	--buf->b_nwindows;
635 #endif
636 
637     /* Change directories when the 'acd' option is set. */
638     DO_AUTOCHDIR
639 
640     /*
641      * Remove the buffer from the list.
642      */
643     if (wipe_buf)
644     {
645 #ifdef FEAT_SUN_WORKSHOP
646 	if (usingSunWorkShop)
647 	    workshop_file_closed_lineno((char *)buf->b_ffname,
648 			(int)buf->b_last_cursor.lnum);
649 #endif
650 	vim_free(buf->b_ffname);
651 	vim_free(buf->b_sfname);
652 	if (buf->b_prev == NULL)
653 	    firstbuf = buf->b_next;
654 	else
655 	    buf->b_prev->b_next = buf->b_next;
656 	if (buf->b_next == NULL)
657 	    lastbuf = buf->b_prev;
658 	else
659 	    buf->b_next->b_prev = buf->b_prev;
660 	free_buffer(buf);
661     }
662     else
663     {
664 	if (del_buf)
665 	{
666 	    /* Free all internal variables and reset option values, to make
667 	     * ":bdel" compatible with Vim 5.7. */
668 	    free_buffer_stuff(buf, TRUE);
669 
670 	    /* Make it look like a new buffer. */
671 	    buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
672 
673 	    /* Init the options when loaded again. */
674 	    buf->b_p_initialized = FALSE;
675 	}
676 	buf_clear_file(buf);
677 	if (del_buf)
678 	    buf->b_p_bl = FALSE;
679     }
680 }
681 
682 /*
683  * Make buffer not contain a file.
684  */
685     void
686 buf_clear_file(buf_T *buf)
687 {
688     buf->b_ml.ml_line_count = 1;
689     unchanged(buf, TRUE);
690     buf->b_shortname = FALSE;
691     buf->b_p_eol = TRUE;
692     buf->b_start_eol = TRUE;
693 #ifdef FEAT_MBYTE
694     buf->b_p_bomb = FALSE;
695     buf->b_start_bomb = FALSE;
696 #endif
697     buf->b_ml.ml_mfp = NULL;
698     buf->b_ml.ml_flags = ML_EMPTY;		/* empty buffer */
699 #ifdef FEAT_NETBEANS_INTG
700     netbeans_deleted_all_lines(buf);
701 #endif
702 }
703 
704 /*
705  * buf_freeall() - free all things allocated for a buffer that are related to
706  * the file.  Careful: get here with "curwin" NULL when exiting.
707  * flags:
708  * BFA_DEL	  buffer is going to be deleted
709  * BFA_WIPE	  buffer is going to be wiped out
710  * BFA_KEEP_UNDO  do not free undo information
711  */
712     void
713 buf_freeall(buf_T *buf, int flags)
714 {
715 #ifdef FEAT_AUTOCMD
716     int		is_curbuf = (buf == curbuf);
717     bufref_T	bufref;
718 # ifdef FEAT_WINDOWS
719     int		is_curwin = (curwin != NULL && curwin->w_buffer == buf);
720     win_T	*the_curwin = curwin;
721     tabpage_T	*the_curtab = curtab;
722 # endif
723 
724     /* Make sure the buffer isn't closed by autocommands. */
725     ++buf->b_locked;
726     set_bufref(&bufref, buf);
727     if (buf->b_ml.ml_mfp != NULL)
728     {
729 	if (apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname,
730 								  FALSE, buf)
731 		&& !bufref_valid(&bufref))
732 	    /* autocommands deleted the buffer */
733 	    return;
734     }
735     if ((flags & BFA_DEL) && buf->b_p_bl)
736     {
737 	if (apply_autocmds(EVENT_BUFDELETE, buf->b_fname, buf->b_fname,
738 								   FALSE, buf)
739 		&& !bufref_valid(&bufref))
740 	    /* autocommands deleted the buffer */
741 	    return;
742     }
743     if (flags & BFA_WIPE)
744     {
745 	if (apply_autocmds(EVENT_BUFWIPEOUT, buf->b_fname, buf->b_fname,
746 								  FALSE, buf)
747 		&& !bufref_valid(&bufref))
748 	    /* autocommands deleted the buffer */
749 	    return;
750     }
751     --buf->b_locked;
752 
753 # ifdef FEAT_WINDOWS
754     /* If the buffer was in curwin and the window has changed, go back to that
755      * window, if it still exists.  This avoids that ":edit x" triggering a
756      * "tabnext" BufUnload autocmd leaves a window behind without a buffer. */
757     if (is_curwin && curwin != the_curwin &&  win_valid_any_tab(the_curwin))
758     {
759 	block_autocmds();
760 	goto_tabpage_win(the_curtab, the_curwin);
761 	unblock_autocmds();
762     }
763 # endif
764 
765 # ifdef FEAT_EVAL
766     if (aborting())	    /* autocmds may abort script processing */
767 	return;
768 # endif
769 
770     /*
771      * It's possible that autocommands change curbuf to the one being deleted.
772      * This might cause curbuf to be deleted unexpectedly.  But in some cases
773      * it's OK to delete the curbuf, because a new one is obtained anyway.
774      * Therefore only return if curbuf changed to the deleted buffer.
775      */
776     if (buf == curbuf && !is_curbuf)
777 	return;
778 #endif
779 #ifdef FEAT_DIFF
780     diff_buf_delete(buf);	    /* Can't use 'diff' for unloaded buffer. */
781 #endif
782 #ifdef FEAT_SYN_HL
783     /* Remove any ownsyntax, unless exiting. */
784     if (curwin != NULL && curwin->w_buffer == buf)
785 	reset_synblock(curwin);
786 #endif
787 
788 #ifdef FEAT_FOLDING
789     /* No folds in an empty buffer. */
790 # ifdef FEAT_WINDOWS
791     {
792 	win_T		*win;
793 	tabpage_T	*tp;
794 
795 	FOR_ALL_TAB_WINDOWS(tp, win)
796 	    if (win->w_buffer == buf)
797 		clearFolding(win);
798     }
799 # else
800     if (curwin != NULL && curwin->w_buffer == buf)
801 	clearFolding(curwin);
802 # endif
803 #endif
804 
805 #ifdef FEAT_TCL
806     tcl_buffer_free(buf);
807 #endif
808     ml_close(buf, TRUE);	    /* close and delete the memline/memfile */
809     buf->b_ml.ml_line_count = 0;    /* no lines in buffer */
810     if ((flags & BFA_KEEP_UNDO) == 0)
811     {
812 	u_blockfree(buf);	    /* free the memory allocated for undo */
813 	u_clearall(buf);	    /* reset all undo information */
814     }
815 #ifdef FEAT_SYN_HL
816     syntax_clear(&buf->b_s);	    /* reset syntax info */
817 #endif
818     buf->b_flags &= ~BF_READERR;    /* a read error is no longer relevant */
819 }
820 
821 /*
822  * Free a buffer structure and the things it contains related to the buffer
823  * itself (not the file, that must have been done already).
824  */
825     static void
826 free_buffer(buf_T *buf)
827 {
828     ++buf_free_count;
829     free_buffer_stuff(buf, TRUE);
830 #ifdef FEAT_EVAL
831     unref_var_dict(buf->b_vars);
832 #endif
833 #ifdef FEAT_LUA
834     lua_buffer_free(buf);
835 #endif
836 #ifdef FEAT_MZSCHEME
837     mzscheme_buffer_free(buf);
838 #endif
839 #ifdef FEAT_PERL
840     perl_buf_free(buf);
841 #endif
842 #ifdef FEAT_PYTHON
843     python_buffer_free(buf);
844 #endif
845 #ifdef FEAT_PYTHON3
846     python3_buffer_free(buf);
847 #endif
848 #ifdef FEAT_RUBY
849     ruby_buffer_free(buf);
850 #endif
851 #ifdef FEAT_JOB_CHANNEL
852     channel_buffer_free(buf);
853 #endif
854 
855     buf_hashtab_remove(buf);
856 
857 #ifdef FEAT_AUTOCMD
858     aubuflocal_remove(buf);
859 
860     if (autocmd_busy)
861     {
862 	/* Do not free the buffer structure while autocommands are executing,
863 	 * it's still needed. Free it when autocmd_busy is reset. */
864 	buf->b_next = au_pending_free_buf;
865 	au_pending_free_buf = buf;
866     }
867     else
868 #endif
869 	vim_free(buf);
870 }
871 
872 /*
873  * Free stuff in the buffer for ":bdel" and when wiping out the buffer.
874  */
875     static void
876 free_buffer_stuff(
877     buf_T	*buf,
878     int		free_options)		/* free options as well */
879 {
880     if (free_options)
881     {
882 	clear_wininfo(buf);		/* including window-local options */
883 	free_buf_options(buf, TRUE);
884 #ifdef FEAT_SPELL
885 	ga_clear(&buf->b_s.b_langp);
886 #endif
887     }
888 #ifdef FEAT_EVAL
889     vars_clear(&buf->b_vars->dv_hashtab); /* free all internal variables */
890     hash_init(&buf->b_vars->dv_hashtab);
891 #endif
892 #ifdef FEAT_USR_CMDS
893     uc_clear(&buf->b_ucmds);		/* clear local user commands */
894 #endif
895 #ifdef FEAT_SIGNS
896     buf_delete_signs(buf);		/* delete any signs */
897 #endif
898 #ifdef FEAT_NETBEANS_INTG
899     netbeans_file_killed(buf);
900 #endif
901 #ifdef FEAT_LOCALMAP
902     map_clear_int(buf, MAP_ALL_MODES, TRUE, FALSE);  /* clear local mappings */
903     map_clear_int(buf, MAP_ALL_MODES, TRUE, TRUE);   /* clear local abbrevs */
904 #endif
905 #ifdef FEAT_MBYTE
906     vim_free(buf->b_start_fenc);
907     buf->b_start_fenc = NULL;
908 #endif
909 }
910 
911 /*
912  * Free the b_wininfo list for buffer "buf".
913  */
914     static void
915 clear_wininfo(buf_T *buf)
916 {
917     wininfo_T	*wip;
918 
919     while (buf->b_wininfo != NULL)
920     {
921 	wip = buf->b_wininfo;
922 	buf->b_wininfo = wip->wi_next;
923 	if (wip->wi_optset)
924 	{
925 	    clear_winopt(&wip->wi_opt);
926 #ifdef FEAT_FOLDING
927 	    deleteFoldRecurse(&wip->wi_folds);
928 #endif
929 	}
930 	vim_free(wip);
931     }
932 }
933 
934 #if defined(FEAT_LISTCMDS) || defined(PROTO)
935 /*
936  * Go to another buffer.  Handles the result of the ATTENTION dialog.
937  */
938     void
939 goto_buffer(
940     exarg_T	*eap,
941     int		start,
942     int		dir,
943     int		count)
944 {
945 # if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
946     bufref_T	old_curbuf;
947 
948     set_bufref(&old_curbuf, curbuf);
949 
950     swap_exists_action = SEA_DIALOG;
951 # endif
952     (void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
953 					     start, dir, count, eap->forceit);
954 # if defined(FEAT_WINDOWS) && defined(HAS_SWAP_EXISTS_ACTION)
955     if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
956     {
957 #  if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
958 	cleanup_T   cs;
959 
960 	/* Reset the error/interrupt/exception state here so that
961 	 * aborting() returns FALSE when closing a window. */
962 	enter_cleanup(&cs);
963 #  endif
964 
965 	/* Quitting means closing the split window, nothing else. */
966 	win_close(curwin, TRUE);
967 	swap_exists_action = SEA_NONE;
968 	swap_exists_did_quit = TRUE;
969 
970 #  if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
971 	/* Restore the error/interrupt/exception state if not discarded by a
972 	 * new aborting error, interrupt, or uncaught exception. */
973 	leave_cleanup(&cs);
974 #  endif
975     }
976     else
977 	handle_swap_exists(&old_curbuf);
978 # endif
979 }
980 #endif
981 
982 #if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
983 /*
984  * Handle the situation of swap_exists_action being set.
985  * It is allowed for "old_curbuf" to be NULL or invalid.
986  */
987     void
988 handle_swap_exists(bufref_T *old_curbuf)
989 {
990 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
991     cleanup_T	cs;
992 # endif
993 #ifdef FEAT_SYN_HL
994     long	old_tw = curbuf->b_p_tw;
995 #endif
996     buf_T	*buf;
997 
998     if (swap_exists_action == SEA_QUIT)
999     {
1000 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1001 	/* Reset the error/interrupt/exception state here so that
1002 	 * aborting() returns FALSE when closing a buffer. */
1003 	enter_cleanup(&cs);
1004 # endif
1005 
1006 	/* User selected Quit at ATTENTION prompt.  Go back to previous
1007 	 * buffer.  If that buffer is gone or the same as the current one,
1008 	 * open a new, empty buffer. */
1009 	swap_exists_action = SEA_NONE;	/* don't want it again */
1010 	swap_exists_did_quit = TRUE;
1011 	close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE);
1012 	if (old_curbuf == NULL || !bufref_valid(old_curbuf)
1013 					      || old_curbuf->br_buf == curbuf)
1014 	    buf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED);
1015 	else
1016 	    buf = old_curbuf->br_buf;
1017 	if (buf != NULL)
1018 	{
1019 	    enter_buffer(buf);
1020 #ifdef FEAT_SYN_HL
1021 	    if (old_tw != curbuf->b_p_tw)
1022 		check_colorcolumn(curwin);
1023 #endif
1024 	}
1025 	/* If "old_curbuf" is NULL we are in big trouble here... */
1026 
1027 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1028 	/* Restore the error/interrupt/exception state if not discarded by a
1029 	 * new aborting error, interrupt, or uncaught exception. */
1030 	leave_cleanup(&cs);
1031 # endif
1032     }
1033     else if (swap_exists_action == SEA_RECOVER)
1034     {
1035 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1036 	/* Reset the error/interrupt/exception state here so that
1037 	 * aborting() returns FALSE when closing a buffer. */
1038 	enter_cleanup(&cs);
1039 # endif
1040 
1041 	/* User selected Recover at ATTENTION prompt. */
1042 	msg_scroll = TRUE;
1043 	ml_recover();
1044 	MSG_PUTS("\n");	/* don't overwrite the last message */
1045 	cmdline_row = msg_row;
1046 	do_modelines(0);
1047 
1048 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1049 	/* Restore the error/interrupt/exception state if not discarded by a
1050 	 * new aborting error, interrupt, or uncaught exception. */
1051 	leave_cleanup(&cs);
1052 # endif
1053     }
1054     swap_exists_action = SEA_NONE;
1055 }
1056 #endif
1057 
1058 #if defined(FEAT_LISTCMDS) || defined(PROTO)
1059 /*
1060  * do_bufdel() - delete or unload buffer(s)
1061  *
1062  * addr_count == 0: ":bdel" - delete current buffer
1063  * addr_count == 1: ":N bdel" or ":bdel N [N ..]" - first delete
1064  *		    buffer "end_bnr", then any other arguments.
1065  * addr_count == 2: ":N,N bdel" - delete buffers in range
1066  *
1067  * command can be DOBUF_UNLOAD (":bunload"), DOBUF_WIPE (":bwipeout") or
1068  * DOBUF_DEL (":bdel")
1069  *
1070  * Returns error message or NULL
1071  */
1072     char_u *
1073 do_bufdel(
1074     int		command,
1075     char_u	*arg,		/* pointer to extra arguments */
1076     int		addr_count,
1077     int		start_bnr,	/* first buffer number in a range */
1078     int		end_bnr,	/* buffer nr or last buffer nr in a range */
1079     int		forceit)
1080 {
1081     int		do_current = 0;	/* delete current buffer? */
1082     int		deleted = 0;	/* number of buffers deleted */
1083     char_u	*errormsg = NULL; /* return value */
1084     int		bnr;		/* buffer number */
1085     char_u	*p;
1086 
1087     if (addr_count == 0)
1088     {
1089 	(void)do_buffer(command, DOBUF_CURRENT, FORWARD, 0, forceit);
1090     }
1091     else
1092     {
1093 	if (addr_count == 2)
1094 	{
1095 	    if (*arg)		/* both range and argument is not allowed */
1096 		return (char_u *)_(e_trailing);
1097 	    bnr = start_bnr;
1098 	}
1099 	else	/* addr_count == 1 */
1100 	    bnr = end_bnr;
1101 
1102 	for ( ;!got_int; ui_breakcheck())
1103 	{
1104 	    /*
1105 	     * delete the current buffer last, otherwise when the
1106 	     * current buffer is deleted, the next buffer becomes
1107 	     * the current one and will be loaded, which may then
1108 	     * also be deleted, etc.
1109 	     */
1110 	    if (bnr == curbuf->b_fnum)
1111 		do_current = bnr;
1112 	    else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
1113 							       forceit) == OK)
1114 		++deleted;
1115 
1116 	    /*
1117 	     * find next buffer number to delete/unload
1118 	     */
1119 	    if (addr_count == 2)
1120 	    {
1121 		if (++bnr > end_bnr)
1122 		    break;
1123 	    }
1124 	    else    /* addr_count == 1 */
1125 	    {
1126 		arg = skipwhite(arg);
1127 		if (*arg == NUL)
1128 		    break;
1129 		if (!VIM_ISDIGIT(*arg))
1130 		{
1131 		    p = skiptowhite_esc(arg);
1132 		    bnr = buflist_findpat(arg, p, command == DOBUF_WIPE,
1133 								FALSE, FALSE);
1134 		    if (bnr < 0)	    /* failed */
1135 			break;
1136 		    arg = p;
1137 		}
1138 		else
1139 		    bnr = getdigits(&arg);
1140 	    }
1141 	}
1142 	if (!got_int && do_current && do_buffer(command, DOBUF_FIRST,
1143 					  FORWARD, do_current, forceit) == OK)
1144 	    ++deleted;
1145 
1146 	if (deleted == 0)
1147 	{
1148 	    if (command == DOBUF_UNLOAD)
1149 		STRCPY(IObuff, _("E515: No buffers were unloaded"));
1150 	    else if (command == DOBUF_DEL)
1151 		STRCPY(IObuff, _("E516: No buffers were deleted"));
1152 	    else
1153 		STRCPY(IObuff, _("E517: No buffers were wiped out"));
1154 	    errormsg = IObuff;
1155 	}
1156 	else if (deleted >= p_report)
1157 	{
1158 	    if (command == DOBUF_UNLOAD)
1159 	    {
1160 		if (deleted == 1)
1161 		    MSG(_("1 buffer unloaded"));
1162 		else
1163 		    smsg((char_u *)_("%d buffers unloaded"), deleted);
1164 	    }
1165 	    else if (command == DOBUF_DEL)
1166 	    {
1167 		if (deleted == 1)
1168 		    MSG(_("1 buffer deleted"));
1169 		else
1170 		    smsg((char_u *)_("%d buffers deleted"), deleted);
1171 	    }
1172 	    else
1173 	    {
1174 		if (deleted == 1)
1175 		    MSG(_("1 buffer wiped out"));
1176 		else
1177 		    smsg((char_u *)_("%d buffers wiped out"), deleted);
1178 	    }
1179 	}
1180     }
1181 
1182 
1183     return errormsg;
1184 }
1185 #endif /* FEAT_LISTCMDS */
1186 
1187 #if defined(FEAT_LISTCMDS) || defined(FEAT_PYTHON) \
1188 	|| defined(FEAT_PYTHON3) || defined(PROTO)
1189 
1190 static int	empty_curbuf(int close_others, int forceit, int action);
1191 
1192 /*
1193  * Make the current buffer empty.
1194  * Used when it is wiped out and it's the last buffer.
1195  */
1196     static int
1197 empty_curbuf(
1198     int close_others,
1199     int forceit,
1200     int action)
1201 {
1202     int	    retval;
1203     buf_T   *buf = curbuf;
1204     bufref_T bufref;
1205 
1206     if (action == DOBUF_UNLOAD)
1207     {
1208 	EMSG(_("E90: Cannot unload last buffer"));
1209 	return FAIL;
1210     }
1211 
1212     set_bufref(&bufref, buf);
1213 #ifdef FEAT_WINDOWS
1214     if (close_others)
1215 	/* Close any other windows on this buffer, then make it empty. */
1216 	close_windows(buf, TRUE);
1217 #endif
1218 
1219     setpcmark();
1220     retval = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE,
1221 					  forceit ? ECMD_FORCEIT : 0, curwin);
1222 
1223     /*
1224      * do_ecmd() may create a new buffer, then we have to delete
1225      * the old one.  But do_ecmd() may have done that already, check
1226      * if the buffer still exists.
1227      */
1228     if (buf != curbuf && bufref_valid(&bufref) && buf->b_nwindows == 0)
1229 	close_buffer(NULL, buf, action, FALSE);
1230     if (!close_others)
1231 	need_fileinfo = FALSE;
1232     return retval;
1233 }
1234 /*
1235  * Implementation of the commands for the buffer list.
1236  *
1237  * action == DOBUF_GOTO	    go to specified buffer
1238  * action == DOBUF_SPLIT    split window and go to specified buffer
1239  * action == DOBUF_UNLOAD   unload specified buffer(s)
1240  * action == DOBUF_DEL	    delete specified buffer(s) from buffer list
1241  * action == DOBUF_WIPE	    delete specified buffer(s) really
1242  *
1243  * start == DOBUF_CURRENT   go to "count" buffer from current buffer
1244  * start == DOBUF_FIRST	    go to "count" buffer from first buffer
1245  * start == DOBUF_LAST	    go to "count" buffer from last buffer
1246  * start == DOBUF_MOD	    go to "count" modified buffer from current buffer
1247  *
1248  * Return FAIL or OK.
1249  */
1250     int
1251 do_buffer(
1252     int		action,
1253     int		start,
1254     int		dir,		/* FORWARD or BACKWARD */
1255     int		count,		/* buffer number or number of buffers */
1256     int		forceit)	/* TRUE for :...! */
1257 {
1258     buf_T	*buf;
1259     buf_T	*bp;
1260     int		unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1261 						     || action == DOBUF_WIPE);
1262 
1263     switch (start)
1264     {
1265 	case DOBUF_FIRST:   buf = firstbuf; break;
1266 	case DOBUF_LAST:    buf = lastbuf;  break;
1267 	default:	    buf = curbuf;   break;
1268     }
1269     if (start == DOBUF_MOD)	    /* find next modified buffer */
1270     {
1271 	while (count-- > 0)
1272 	{
1273 	    do
1274 	    {
1275 		buf = buf->b_next;
1276 		if (buf == NULL)
1277 		    buf = firstbuf;
1278 	    }
1279 	    while (buf != curbuf && !bufIsChanged(buf));
1280 	}
1281 	if (!bufIsChanged(buf))
1282 	{
1283 	    EMSG(_("E84: No modified buffer found"));
1284 	    return FAIL;
1285 	}
1286     }
1287     else if (start == DOBUF_FIRST && count) /* find specified buffer number */
1288     {
1289 	while (buf != NULL && buf->b_fnum != count)
1290 	    buf = buf->b_next;
1291     }
1292     else
1293     {
1294 	bp = NULL;
1295 	while (count > 0 || (!unload && !buf->b_p_bl && bp != buf))
1296 	{
1297 	    /* remember the buffer where we start, we come back there when all
1298 	     * buffers are unlisted. */
1299 	    if (bp == NULL)
1300 		bp = buf;
1301 	    if (dir == FORWARD)
1302 	    {
1303 		buf = buf->b_next;
1304 		if (buf == NULL)
1305 		    buf = firstbuf;
1306 	    }
1307 	    else
1308 	    {
1309 		buf = buf->b_prev;
1310 		if (buf == NULL)
1311 		    buf = lastbuf;
1312 	    }
1313 	    /* don't count unlisted buffers */
1314 	    if (unload || buf->b_p_bl)
1315 	    {
1316 		 --count;
1317 		 bp = NULL;	/* use this buffer as new starting point */
1318 	    }
1319 	    if (bp == buf)
1320 	    {
1321 		/* back where we started, didn't find anything. */
1322 		EMSG(_("E85: There is no listed buffer"));
1323 		return FAIL;
1324 	    }
1325 	}
1326     }
1327 
1328     if (buf == NULL)	    /* could not find it */
1329     {
1330 	if (start == DOBUF_FIRST)
1331 	{
1332 	    /* don't warn when deleting */
1333 	    if (!unload)
1334 		EMSGN(_(e_nobufnr), count);
1335 	}
1336 	else if (dir == FORWARD)
1337 	    EMSG(_("E87: Cannot go beyond last buffer"));
1338 	else
1339 	    EMSG(_("E88: Cannot go before first buffer"));
1340 	return FAIL;
1341     }
1342 
1343 #ifdef FEAT_GUI
1344     need_mouse_correct = TRUE;
1345 #endif
1346 
1347 #ifdef FEAT_LISTCMDS
1348     /*
1349      * delete buffer buf from memory and/or the list
1350      */
1351     if (unload)
1352     {
1353 	int	forward;
1354 # if defined(FEAT_AUTOCMD) || defined(FEAT_WINDOWS)
1355 	bufref_T bufref;
1356 
1357 	set_bufref(&bufref, buf);
1358 # endif
1359 
1360 	/* When unloading or deleting a buffer that's already unloaded and
1361 	 * unlisted: fail silently. */
1362 	if (action != DOBUF_WIPE && buf->b_ml.ml_mfp == NULL && !buf->b_p_bl)
1363 	    return FAIL;
1364 
1365 	if (!forceit && bufIsChanged(buf))
1366 	{
1367 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1368 	    if ((p_confirm || cmdmod.confirm) && p_write)
1369 	    {
1370 		dialog_changed(buf, FALSE);
1371 # ifdef FEAT_AUTOCMD
1372 		if (!bufref_valid(&bufref))
1373 		    /* Autocommand deleted buffer, oops!  It's not changed
1374 		     * now. */
1375 		    return FAIL;
1376 # endif
1377 		/* If it's still changed fail silently, the dialog already
1378 		 * mentioned why it fails. */
1379 		if (bufIsChanged(buf))
1380 		    return FAIL;
1381 	    }
1382 	    else
1383 #endif
1384 	    {
1385 		EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
1386 								 buf->b_fnum);
1387 		return FAIL;
1388 	    }
1389 	}
1390 
1391 	/* When closing the current buffer stop Visual mode. */
1392 	if (buf == curbuf && VIsual_active)
1393 	    end_visual_mode();
1394 
1395 	/*
1396 	 * If deleting the last (listed) buffer, make it empty.
1397 	 * The last (listed) buffer cannot be unloaded.
1398 	 */
1399 	FOR_ALL_BUFFERS(bp)
1400 	    if (bp->b_p_bl && bp != buf)
1401 		break;
1402 	if (bp == NULL && buf == curbuf)
1403 	    return empty_curbuf(TRUE, forceit, action);
1404 
1405 #ifdef FEAT_WINDOWS
1406 	/*
1407 	 * If the deleted buffer is the current one, close the current window
1408 	 * (unless it's the only window).  Repeat this so long as we end up in
1409 	 * a window with this buffer.
1410 	 */
1411 	while (buf == curbuf
1412 # ifdef FEAT_AUTOCMD
1413 		   && !(curwin->w_closing || curwin->w_buffer->b_locked > 0)
1414 # endif
1415 		   && (!ONE_WINDOW || first_tabpage->tp_next != NULL))
1416 	{
1417 	    if (win_close(curwin, FALSE) == FAIL)
1418 		break;
1419 	}
1420 #endif
1421 
1422 	/*
1423 	 * If the buffer to be deleted is not the current one, delete it here.
1424 	 */
1425 	if (buf != curbuf)
1426 	{
1427 #ifdef FEAT_WINDOWS
1428 	    close_windows(buf, FALSE);
1429 	    if (buf != curbuf && bufref_valid(&bufref))
1430 #endif
1431 		if (buf->b_nwindows <= 0)
1432 		    close_buffer(NULL, buf, action, FALSE);
1433 	    return OK;
1434 	}
1435 
1436 	/*
1437 	 * Deleting the current buffer: Need to find another buffer to go to.
1438 	 * There should be another, otherwise it would have been handled
1439 	 * above.  However, autocommands may have deleted all buffers.
1440 	 * First use au_new_curbuf.br_buf, if it is valid.
1441 	 * Then prefer the buffer we most recently visited.
1442 	 * Else try to find one that is loaded, after the current buffer,
1443 	 * then before the current buffer.
1444 	 * Finally use any buffer.
1445 	 */
1446 	buf = NULL;	/* selected buffer */
1447 	bp = NULL;	/* used when no loaded buffer found */
1448 #ifdef FEAT_AUTOCMD
1449 	if (au_new_curbuf.br_buf != NULL && bufref_valid(&au_new_curbuf))
1450 	    buf = au_new_curbuf.br_buf;
1451 # ifdef FEAT_JUMPLIST
1452 	else
1453 # endif
1454 #endif
1455 #ifdef FEAT_JUMPLIST
1456 	    if (curwin->w_jumplistlen > 0)
1457 	{
1458 	    int     jumpidx;
1459 
1460 	    jumpidx = curwin->w_jumplistidx - 1;
1461 	    if (jumpidx < 0)
1462 		jumpidx = curwin->w_jumplistlen - 1;
1463 
1464 	    forward = jumpidx;
1465 	    while (jumpidx != curwin->w_jumplistidx)
1466 	    {
1467 		buf = buflist_findnr(curwin->w_jumplist[jumpidx].fmark.fnum);
1468 		if (buf != NULL)
1469 		{
1470 		    if (buf == curbuf || !buf->b_p_bl)
1471 			buf = NULL;	/* skip current and unlisted bufs */
1472 		    else if (buf->b_ml.ml_mfp == NULL)
1473 		    {
1474 			/* skip unloaded buf, but may keep it for later */
1475 			if (bp == NULL)
1476 			    bp = buf;
1477 			buf = NULL;
1478 		    }
1479 		}
1480 		if (buf != NULL)   /* found a valid buffer: stop searching */
1481 		    break;
1482 		/* advance to older entry in jump list */
1483 		if (!jumpidx && curwin->w_jumplistidx == curwin->w_jumplistlen)
1484 		    break;
1485 		if (--jumpidx < 0)
1486 		    jumpidx = curwin->w_jumplistlen - 1;
1487 		if (jumpidx == forward)		/* List exhausted for sure */
1488 		    break;
1489 	    }
1490 	}
1491 #endif
1492 
1493 	if (buf == NULL)	/* No previous buffer, Try 2'nd approach */
1494 	{
1495 	    forward = TRUE;
1496 	    buf = curbuf->b_next;
1497 	    for (;;)
1498 	    {
1499 		if (buf == NULL)
1500 		{
1501 		    if (!forward)	/* tried both directions */
1502 			break;
1503 		    buf = curbuf->b_prev;
1504 		    forward = FALSE;
1505 		    continue;
1506 		}
1507 		/* in non-help buffer, try to skip help buffers, and vv */
1508 		if (buf->b_help == curbuf->b_help && buf->b_p_bl)
1509 		{
1510 		    if (buf->b_ml.ml_mfp != NULL)   /* found loaded buffer */
1511 			break;
1512 		    if (bp == NULL)	/* remember unloaded buf for later */
1513 			bp = buf;
1514 		}
1515 		if (forward)
1516 		    buf = buf->b_next;
1517 		else
1518 		    buf = buf->b_prev;
1519 	    }
1520 	}
1521 	if (buf == NULL)	/* No loaded buffer, use unloaded one */
1522 	    buf = bp;
1523 	if (buf == NULL)	/* No loaded buffer, find listed one */
1524 	{
1525 	    FOR_ALL_BUFFERS(buf)
1526 		if (buf->b_p_bl && buf != curbuf)
1527 		    break;
1528 	}
1529 	if (buf == NULL)	/* Still no buffer, just take one */
1530 	{
1531 	    if (curbuf->b_next != NULL)
1532 		buf = curbuf->b_next;
1533 	    else
1534 		buf = curbuf->b_prev;
1535 	}
1536     }
1537 
1538     if (buf == NULL)
1539     {
1540 	/* Autocommands must have wiped out all other buffers.  Only option
1541 	 * now is to make the current buffer empty. */
1542 	return empty_curbuf(FALSE, forceit, action);
1543     }
1544 
1545     /*
1546      * make buf current buffer
1547      */
1548     if (action == DOBUF_SPLIT)	    /* split window first */
1549     {
1550 # ifdef FEAT_WINDOWS
1551 	/* If 'switchbuf' contains "useopen": jump to first window containing
1552 	 * "buf" if one exists */
1553 	if ((swb_flags & SWB_USEOPEN) && buf_jump_open_win(buf))
1554 	    return OK;
1555 	/* If 'switchbuf' contains "usetab": jump to first window in any tab
1556 	 * page containing "buf" if one exists */
1557 	if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf))
1558 	    return OK;
1559 	if (win_split(0, 0) == FAIL)
1560 # endif
1561 	    return FAIL;
1562     }
1563 #endif
1564 
1565     /* go to current buffer - nothing to do */
1566     if (buf == curbuf)
1567 	return OK;
1568 
1569     /*
1570      * Check if the current buffer may be abandoned.
1571      */
1572     if (action == DOBUF_GOTO && !can_abandon(curbuf, forceit))
1573     {
1574 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1575 	if ((p_confirm || cmdmod.confirm) && p_write)
1576 	{
1577 # ifdef FEAT_AUTOCMD
1578 	    bufref_T bufref;
1579 
1580 	    set_bufref(&bufref, buf);
1581 # endif
1582 	    dialog_changed(curbuf, FALSE);
1583 # ifdef FEAT_AUTOCMD
1584 	    if (!bufref_valid(&bufref))
1585 		/* Autocommand deleted buffer, oops! */
1586 		return FAIL;
1587 # endif
1588 	}
1589 	if (bufIsChanged(curbuf))
1590 #endif
1591 	{
1592 	    EMSG(_(e_nowrtmsg));
1593 	    return FAIL;
1594 	}
1595     }
1596 
1597     /* Go to the other buffer. */
1598     set_curbuf(buf, action);
1599 
1600 #if defined(FEAT_LISTCMDS) \
1601 	&& (defined(FEAT_SCROLLBIND) || defined(FEAT_CURSORBIND))
1602     if (action == DOBUF_SPLIT)
1603     {
1604 	RESET_BINDING(curwin);	/* reset 'scrollbind' and 'cursorbind' */
1605     }
1606 #endif
1607 
1608 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1609     if (aborting())	    /* autocmds may abort script processing */
1610 	return FAIL;
1611 #endif
1612 
1613     return OK;
1614 }
1615 #endif
1616 
1617 /*
1618  * Set current buffer to "buf".  Executes autocommands and closes current
1619  * buffer.  "action" tells how to close the current buffer:
1620  * DOBUF_GOTO	    free or hide it
1621  * DOBUF_SPLIT	    nothing
1622  * DOBUF_UNLOAD	    unload it
1623  * DOBUF_DEL	    delete it
1624  * DOBUF_WIPE	    wipe it out
1625  */
1626     void
1627 set_curbuf(buf_T *buf, int action)
1628 {
1629     buf_T	*prevbuf;
1630     int		unload = (action == DOBUF_UNLOAD || action == DOBUF_DEL
1631 						     || action == DOBUF_WIPE);
1632 #ifdef FEAT_SYN_HL
1633     long	old_tw = curbuf->b_p_tw;
1634 #endif
1635     bufref_T	bufref;
1636 
1637     setpcmark();
1638     if (!cmdmod.keepalt)
1639 	curwin->w_alt_fnum = curbuf->b_fnum; /* remember alternate file */
1640     buflist_altfpos(curwin);			 /* remember curpos */
1641 
1642     /* Don't restart Select mode after switching to another buffer. */
1643     VIsual_reselect = FALSE;
1644 
1645     /* close_windows() or apply_autocmds() may change curbuf */
1646     prevbuf = curbuf;
1647     set_bufref(&bufref, prevbuf);
1648 
1649 #ifdef FEAT_AUTOCMD
1650     if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
1651 # ifdef FEAT_EVAL
1652 	    || (bufref_valid(&bufref) && !aborting())
1653 # else
1654 	    || bufref_valid(&bufref)
1655 # endif
1656        )
1657 #endif
1658     {
1659 #ifdef FEAT_SYN_HL
1660 	if (prevbuf == curwin->w_buffer)
1661 	    reset_synblock(curwin);
1662 #endif
1663 #ifdef FEAT_WINDOWS
1664 	if (unload)
1665 	    close_windows(prevbuf, FALSE);
1666 #endif
1667 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1668 	if (bufref_valid(&bufref) && !aborting())
1669 #else
1670 	if (bufref_valid(&bufref))
1671 #endif
1672 	{
1673 #ifdef FEAT_WINDOWS
1674 	    win_T  *previouswin = curwin;
1675 #endif
1676 	    if (prevbuf == curbuf)
1677 		u_sync(FALSE);
1678 	    close_buffer(prevbuf == curwin->w_buffer ? curwin : NULL, prevbuf,
1679 		    unload ? action : (action == DOBUF_GOTO
1680 			&& !P_HID(prevbuf)
1681 			&& !bufIsChanged(prevbuf)) ? DOBUF_UNLOAD : 0, FALSE);
1682 #ifdef FEAT_WINDOWS
1683 	    if (curwin != previouswin && win_valid(previouswin))
1684 	      /* autocommands changed curwin, Grr! */
1685 	      curwin = previouswin;
1686 #endif
1687 	}
1688     }
1689 #ifdef FEAT_AUTOCMD
1690     /* An autocommand may have deleted "buf", already entered it (e.g., when
1691      * it did ":bunload") or aborted the script processing.
1692      * If curwin->w_buffer is null, enter_buffer() will make it valid again */
1693     if ((buf_valid(buf) && buf != curbuf
1694 # ifdef FEAT_EVAL
1695 	    && !aborting()
1696 # endif
1697 # ifdef FEAT_WINDOWS
1698 	 ) || curwin->w_buffer == NULL
1699 # endif
1700        )
1701 #endif
1702     {
1703 	enter_buffer(buf);
1704 #ifdef FEAT_SYN_HL
1705 	if (old_tw != curbuf->b_p_tw)
1706 	    check_colorcolumn(curwin);
1707 #endif
1708     }
1709 }
1710 
1711 /*
1712  * Enter a new current buffer.
1713  * Old curbuf must have been abandoned already!  This also means "curbuf" may
1714  * be pointing to freed memory.
1715  */
1716     void
1717 enter_buffer(buf_T *buf)
1718 {
1719     /* Copy buffer and window local option values.  Not for a help buffer. */
1720     buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
1721     if (!buf->b_help)
1722 	get_winopts(buf);
1723 #ifdef FEAT_FOLDING
1724     else
1725 	/* Remove all folds in the window. */
1726 	clearFolding(curwin);
1727     foldUpdateAll(curwin);	/* update folds (later). */
1728 #endif
1729 
1730     /* Get the buffer in the current window. */
1731     curwin->w_buffer = buf;
1732     curbuf = buf;
1733     ++curbuf->b_nwindows;
1734 
1735 #ifdef FEAT_DIFF
1736     if (curwin->w_p_diff)
1737 	diff_buf_add(curbuf);
1738 #endif
1739 
1740 #ifdef FEAT_SYN_HL
1741     curwin->w_s = &(buf->b_s);
1742 #endif
1743 
1744     /* Cursor on first line by default. */
1745     curwin->w_cursor.lnum = 1;
1746     curwin->w_cursor.col = 0;
1747 #ifdef FEAT_VIRTUALEDIT
1748     curwin->w_cursor.coladd = 0;
1749 #endif
1750     curwin->w_set_curswant = TRUE;
1751 #ifdef FEAT_AUTOCMD
1752     curwin->w_topline_was_set = FALSE;
1753 #endif
1754 
1755     /* mark cursor position as being invalid */
1756     curwin->w_valid = 0;
1757 
1758     /* Make sure the buffer is loaded. */
1759     if (curbuf->b_ml.ml_mfp == NULL)	/* need to load the file */
1760     {
1761 #ifdef FEAT_AUTOCMD
1762 	/* If there is no filetype, allow for detecting one.  Esp. useful for
1763 	 * ":ball" used in a autocommand.  If there already is a filetype we
1764 	 * might prefer to keep it. */
1765 	if (*curbuf->b_p_ft == NUL)
1766 	    did_filetype = FALSE;
1767 #endif
1768 
1769 	open_buffer(FALSE, NULL, 0);
1770     }
1771     else
1772     {
1773 	if (!msg_silent)
1774 	    need_fileinfo = TRUE;	/* display file info after redraw */
1775 	(void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */
1776 #ifdef FEAT_AUTOCMD
1777 	curwin->w_topline = 1;
1778 # ifdef FEAT_DIFF
1779 	curwin->w_topfill = 0;
1780 # endif
1781 	apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
1782 	apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
1783 #endif
1784     }
1785 
1786     /* If autocommands did not change the cursor position, restore cursor lnum
1787      * and possibly cursor col. */
1788     if (curwin->w_cursor.lnum == 1 && inindent(0))
1789 	buflist_getfpos();
1790 
1791     check_arg_idx(curwin);		/* check for valid arg_idx */
1792 #ifdef FEAT_TITLE
1793     maketitle();
1794 #endif
1795 #ifdef FEAT_AUTOCMD
1796 	/* when autocmds didn't change it */
1797     if (curwin->w_topline == 1 && !curwin->w_topline_was_set)
1798 #endif
1799 	scroll_cursor_halfway(FALSE);	/* redisplay at correct position */
1800 
1801 #ifdef FEAT_NETBEANS_INTG
1802     /* Send fileOpened event because we've changed buffers. */
1803     netbeans_file_activated(curbuf);
1804 #endif
1805 
1806     /* Change directories when the 'acd' option is set. */
1807     DO_AUTOCHDIR
1808 
1809 #ifdef FEAT_KEYMAP
1810     if (curbuf->b_kmap_state & KEYMAP_INIT)
1811 	(void)keymap_init();
1812 #endif
1813 #ifdef FEAT_SPELL
1814     /* May need to set the spell language.  Can only do this after the buffer
1815      * has been properly setup. */
1816     if (!curbuf->b_help && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
1817 	(void)did_set_spelllang(curwin);
1818 #endif
1819 #ifdef FEAT_VIMINFO
1820     curbuf->b_last_used = vim_time();
1821 #endif
1822 
1823     redraw_later(NOT_VALID);
1824 }
1825 
1826 #if defined(FEAT_AUTOCHDIR) || defined(PROTO)
1827 /*
1828  * Change to the directory of the current buffer.
1829  * Don't do this while still starting up.
1830  */
1831     void
1832 do_autochdir(void)
1833 {
1834     if ((starting == 0 || test_autochdir)
1835 	    && curbuf->b_ffname != NULL
1836 	    && vim_chdirfile(curbuf->b_ffname) == OK)
1837 	shorten_fnames(TRUE);
1838 }
1839 #endif
1840 
1841 /*
1842  * functions for dealing with the buffer list
1843  */
1844 
1845 static int  top_file_num = 1;		/* highest file number */
1846 
1847 /*
1848  * Add a file name to the buffer list.  Return a pointer to the buffer.
1849  * If the same file name already exists return a pointer to that buffer.
1850  * If it does not exist, or if fname == NULL, a new entry is created.
1851  * If (flags & BLN_CURBUF) is TRUE, may use current buffer.
1852  * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list.
1853  * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer.
1854  * If (flags & BLN_NEW) is TRUE, don't use an existing buffer.
1855  * If (flags & BLN_NOOPT) is TRUE, don't copy options from the current buffer
1856  *				    if the buffer already exists.
1857  * This is the ONLY way to create a new buffer.
1858  */
1859     buf_T *
1860 buflist_new(
1861     char_u	*ffname,	/* full path of fname or relative */
1862     char_u	*sfname,	/* short fname or NULL */
1863     linenr_T	lnum,		/* preferred cursor line */
1864     int		flags)		/* BLN_ defines */
1865 {
1866     buf_T	*buf;
1867 #ifdef UNIX
1868     stat_T	st;
1869 #endif
1870 
1871     if (top_file_num == 1)
1872 	hash_init(&buf_hashtab);
1873 
1874     fname_expand(curbuf, &ffname, &sfname);	/* will allocate ffname */
1875 
1876     /*
1877      * If file name already exists in the list, update the entry.
1878      */
1879 #ifdef UNIX
1880     /* On Unix we can use inode numbers when the file exists.  Works better
1881      * for hard links. */
1882     if (sfname == NULL || mch_stat((char *)sfname, &st) < 0)
1883 	st.st_dev = (dev_T)-1;
1884 #endif
1885     if (ffname != NULL && !(flags & (BLN_DUMMY | BLN_NEW)) && (buf =
1886 #ifdef UNIX
1887 		buflist_findname_stat(ffname, &st)
1888 #else
1889 		buflist_findname(ffname)
1890 #endif
1891 		) != NULL)
1892     {
1893 	vim_free(ffname);
1894 	if (lnum != 0)
1895 	    buflist_setfpos(buf, curwin, lnum, (colnr_T)0, FALSE);
1896 
1897 	if ((flags & BLN_NOOPT) == 0)
1898 	    /* copy the options now, if 'cpo' doesn't have 's' and not done
1899 	     * already */
1900 	    buf_copy_options(buf, 0);
1901 
1902 	if ((flags & BLN_LISTED) && !buf->b_p_bl)
1903 	{
1904 #ifdef FEAT_AUTOCMD
1905 	    bufref_T bufref;
1906 #endif
1907 	    buf->b_p_bl = TRUE;
1908 #ifdef FEAT_AUTOCMD
1909 	    set_bufref(&bufref, buf);
1910 	    if (!(flags & BLN_DUMMY))
1911 	    {
1912 		if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
1913 			&& !bufref_valid(&bufref))
1914 		    return NULL;
1915 	    }
1916 #endif
1917 	}
1918 	return buf;
1919     }
1920 
1921     /*
1922      * If the current buffer has no name and no contents, use the current
1923      * buffer.	Otherwise: Need to allocate a new buffer structure.
1924      *
1925      * This is the ONLY place where a new buffer structure is allocated!
1926      * (A spell file buffer is allocated in spell.c, but that's not a normal
1927      * buffer.)
1928      */
1929     buf = NULL;
1930     if ((flags & BLN_CURBUF)
1931 	    && curbuf != NULL
1932 	    && curbuf->b_ffname == NULL
1933 	    && curbuf->b_nwindows <= 1
1934 	    && (curbuf->b_ml.ml_mfp == NULL || bufempty()))
1935     {
1936 	buf = curbuf;
1937 #ifdef FEAT_AUTOCMD
1938 	/* It's like this buffer is deleted.  Watch out for autocommands that
1939 	 * change curbuf!  If that happens, allocate a new buffer anyway. */
1940 	if (curbuf->b_p_bl)
1941 	    apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
1942 	if (buf == curbuf)
1943 	    apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
1944 # ifdef FEAT_EVAL
1945 	if (aborting())		/* autocmds may abort script processing */
1946 	    return NULL;
1947 # endif
1948 #endif
1949 #ifdef FEAT_QUICKFIX
1950 # ifdef FEAT_AUTOCMD
1951 	if (buf == curbuf)
1952 # endif
1953 	{
1954 	    /* Make sure 'bufhidden' and 'buftype' are empty */
1955 	    clear_string_option(&buf->b_p_bh);
1956 	    clear_string_option(&buf->b_p_bt);
1957 	}
1958 #endif
1959     }
1960     if (buf != curbuf || curbuf == NULL)
1961     {
1962 	buf = (buf_T *)alloc_clear((unsigned)sizeof(buf_T));
1963 	if (buf == NULL)
1964 	{
1965 	    vim_free(ffname);
1966 	    return NULL;
1967 	}
1968 #ifdef FEAT_EVAL
1969 	/* init b: variables */
1970 	buf->b_vars = dict_alloc();
1971 	if (buf->b_vars == NULL)
1972 	{
1973 	    vim_free(ffname);
1974 	    vim_free(buf);
1975 	    return NULL;
1976 	}
1977 	init_var_dict(buf->b_vars, &buf->b_bufvar, VAR_SCOPE);
1978 #endif
1979     }
1980 
1981     if (ffname != NULL)
1982     {
1983 	buf->b_ffname = ffname;
1984 	buf->b_sfname = vim_strsave(sfname);
1985     }
1986 
1987     clear_wininfo(buf);
1988     buf->b_wininfo = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
1989 
1990     if ((ffname != NULL && (buf->b_ffname == NULL || buf->b_sfname == NULL))
1991 	    || buf->b_wininfo == NULL)
1992     {
1993 	vim_free(buf->b_ffname);
1994 	buf->b_ffname = NULL;
1995 	vim_free(buf->b_sfname);
1996 	buf->b_sfname = NULL;
1997 	if (buf != curbuf)
1998 	    free_buffer(buf);
1999 	return NULL;
2000     }
2001 
2002     if (buf == curbuf)
2003     {
2004 	/* free all things allocated for this buffer */
2005 	buf_freeall(buf, 0);
2006 	if (buf != curbuf)	 /* autocommands deleted the buffer! */
2007 	    return NULL;
2008 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
2009 	if (aborting())		/* autocmds may abort script processing */
2010 	    return NULL;
2011 #endif
2012 	free_buffer_stuff(buf, FALSE);	/* delete local variables et al. */
2013 
2014 	/* Init the options. */
2015 	buf->b_p_initialized = FALSE;
2016 	buf_copy_options(buf, BCO_ENTER);
2017 
2018 #ifdef FEAT_KEYMAP
2019 	/* need to reload lmaps and set b:keymap_name */
2020 	curbuf->b_kmap_state |= KEYMAP_INIT;
2021 #endif
2022     }
2023     else
2024     {
2025 	/*
2026 	 * put new buffer at the end of the buffer list
2027 	 */
2028 	buf->b_next = NULL;
2029 	if (firstbuf == NULL)		/* buffer list is empty */
2030 	{
2031 	    buf->b_prev = NULL;
2032 	    firstbuf = buf;
2033 	}
2034 	else				/* append new buffer at end of list */
2035 	{
2036 	    lastbuf->b_next = buf;
2037 	    buf->b_prev = lastbuf;
2038 	}
2039 	lastbuf = buf;
2040 
2041 	buf->b_fnum = top_file_num++;
2042 	if (top_file_num < 0)		/* wrap around (may cause duplicates) */
2043 	{
2044 	    EMSG(_("W14: Warning: List of file names overflow"));
2045 	    if (emsg_silent == 0)
2046 	    {
2047 		out_flush();
2048 		ui_delay(3000L, TRUE);	/* make sure it is noticed */
2049 	    }
2050 	    top_file_num = 1;
2051 	}
2052 	buf_hashtab_add(buf);
2053 
2054 	/*
2055 	 * Always copy the options from the current buffer.
2056 	 */
2057 	buf_copy_options(buf, BCO_ALWAYS);
2058     }
2059 
2060     buf->b_wininfo->wi_fpos.lnum = lnum;
2061     buf->b_wininfo->wi_win = curwin;
2062 
2063 #ifdef FEAT_SYN_HL
2064     hash_init(&buf->b_s.b_keywtab);
2065     hash_init(&buf->b_s.b_keywtab_ic);
2066 #endif
2067 
2068     buf->b_fname = buf->b_sfname;
2069 #ifdef UNIX
2070     if (st.st_dev == (dev_T)-1)
2071 	buf->b_dev_valid = FALSE;
2072     else
2073     {
2074 	buf->b_dev_valid = TRUE;
2075 	buf->b_dev = st.st_dev;
2076 	buf->b_ino = st.st_ino;
2077     }
2078 #endif
2079     buf->b_u_synced = TRUE;
2080     buf->b_flags = BF_CHECK_RO | BF_NEVERLOADED;
2081     if (flags & BLN_DUMMY)
2082 	buf->b_flags |= BF_DUMMY;
2083     buf_clear_file(buf);
2084     clrallmarks(buf);			/* clear marks */
2085     fmarks_check_names(buf);		/* check file marks for this file */
2086     buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE;	/* init 'buflisted' */
2087 #ifdef FEAT_AUTOCMD
2088     if (!(flags & BLN_DUMMY))
2089     {
2090 	bufref_T bufref;
2091 
2092 	/* Tricky: these autocommands may change the buffer list.  They could
2093 	 * also split the window with re-using the one empty buffer. This may
2094 	 * result in unexpectedly losing the empty buffer. */
2095 	set_bufref(&bufref, buf);
2096 	if (apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, buf)
2097 		&& !bufref_valid(&bufref))
2098 	    return NULL;
2099 	if (flags & BLN_LISTED)
2100 	{
2101 	    if (apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, buf)
2102 		    && !bufref_valid(&bufref))
2103 		return NULL;
2104 	}
2105 # ifdef FEAT_EVAL
2106 	if (aborting())		/* autocmds may abort script processing */
2107 	    return NULL;
2108 # endif
2109     }
2110 #endif
2111 
2112     return buf;
2113 }
2114 
2115 /*
2116  * Free the memory for the options of a buffer.
2117  * If "free_p_ff" is TRUE also free 'fileformat', 'buftype' and
2118  * 'fileencoding'.
2119  */
2120     void
2121 free_buf_options(
2122     buf_T	*buf,
2123     int		free_p_ff)
2124 {
2125     if (free_p_ff)
2126     {
2127 #ifdef FEAT_MBYTE
2128 	clear_string_option(&buf->b_p_fenc);
2129 #endif
2130 	clear_string_option(&buf->b_p_ff);
2131 #ifdef FEAT_QUICKFIX
2132 	clear_string_option(&buf->b_p_bh);
2133 	clear_string_option(&buf->b_p_bt);
2134 #endif
2135     }
2136 #ifdef FEAT_FIND_ID
2137     clear_string_option(&buf->b_p_def);
2138     clear_string_option(&buf->b_p_inc);
2139 # ifdef FEAT_EVAL
2140     clear_string_option(&buf->b_p_inex);
2141 # endif
2142 #endif
2143 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL)
2144     clear_string_option(&buf->b_p_inde);
2145     clear_string_option(&buf->b_p_indk);
2146 #endif
2147 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
2148     clear_string_option(&buf->b_p_bexpr);
2149 #endif
2150 #if defined(FEAT_CRYPT)
2151     clear_string_option(&buf->b_p_cm);
2152 #endif
2153 #if defined(FEAT_EVAL)
2154     clear_string_option(&buf->b_p_fex);
2155 #endif
2156 #ifdef FEAT_CRYPT
2157     clear_string_option(&buf->b_p_key);
2158 #endif
2159     clear_string_option(&buf->b_p_kp);
2160     clear_string_option(&buf->b_p_mps);
2161     clear_string_option(&buf->b_p_fo);
2162     clear_string_option(&buf->b_p_flp);
2163     clear_string_option(&buf->b_p_isk);
2164 #ifdef FEAT_KEYMAP
2165     clear_string_option(&buf->b_p_keymap);
2166     ga_clear(&buf->b_kmap_ga);
2167 #endif
2168 #ifdef FEAT_COMMENTS
2169     clear_string_option(&buf->b_p_com);
2170 #endif
2171 #ifdef FEAT_FOLDING
2172     clear_string_option(&buf->b_p_cms);
2173 #endif
2174     clear_string_option(&buf->b_p_nf);
2175 #ifdef FEAT_SYN_HL
2176     clear_string_option(&buf->b_p_syn);
2177     clear_string_option(&buf->b_s.b_syn_isk);
2178 #endif
2179 #ifdef FEAT_SPELL
2180     clear_string_option(&buf->b_s.b_p_spc);
2181     clear_string_option(&buf->b_s.b_p_spf);
2182     vim_regfree(buf->b_s.b_cap_prog);
2183     buf->b_s.b_cap_prog = NULL;
2184     clear_string_option(&buf->b_s.b_p_spl);
2185 #endif
2186 #ifdef FEAT_SEARCHPATH
2187     clear_string_option(&buf->b_p_sua);
2188 #endif
2189 #ifdef FEAT_AUTOCMD
2190     clear_string_option(&buf->b_p_ft);
2191 #endif
2192 #ifdef FEAT_CINDENT
2193     clear_string_option(&buf->b_p_cink);
2194     clear_string_option(&buf->b_p_cino);
2195 #endif
2196 #if defined(FEAT_CINDENT) || defined(FEAT_SMARTINDENT)
2197     clear_string_option(&buf->b_p_cinw);
2198 #endif
2199 #ifdef FEAT_INS_EXPAND
2200     clear_string_option(&buf->b_p_cpt);
2201 #endif
2202 #ifdef FEAT_COMPL_FUNC
2203     clear_string_option(&buf->b_p_cfu);
2204     clear_string_option(&buf->b_p_ofu);
2205 #endif
2206 #ifdef FEAT_QUICKFIX
2207     clear_string_option(&buf->b_p_gp);
2208     clear_string_option(&buf->b_p_mp);
2209     clear_string_option(&buf->b_p_efm);
2210 #endif
2211     clear_string_option(&buf->b_p_ep);
2212     clear_string_option(&buf->b_p_path);
2213     clear_string_option(&buf->b_p_tags);
2214     clear_string_option(&buf->b_p_tc);
2215 #ifdef FEAT_INS_EXPAND
2216     clear_string_option(&buf->b_p_dict);
2217     clear_string_option(&buf->b_p_tsr);
2218 #endif
2219 #ifdef FEAT_TEXTOBJ
2220     clear_string_option(&buf->b_p_qe);
2221 #endif
2222     buf->b_p_ar = -1;
2223     buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
2224 #ifdef FEAT_LISP
2225     clear_string_option(&buf->b_p_lw);
2226 #endif
2227     clear_string_option(&buf->b_p_bkc);
2228 }
2229 
2230 /*
2231  * get alternate file n
2232  * set linenr to lnum or altfpos.lnum if lnum == 0
2233  *	also set cursor column to altfpos.col if 'startofline' is not set.
2234  * if (options & GETF_SETMARK) call setpcmark()
2235  * if (options & GETF_ALT) we are jumping to an alternate file.
2236  * if (options & GETF_SWITCH) respect 'switchbuf' settings when jumping
2237  *
2238  * return FAIL for failure, OK for success
2239  */
2240     int
2241 buflist_getfile(
2242     int		n,
2243     linenr_T	lnum,
2244     int		options,
2245     int		forceit)
2246 {
2247     buf_T	*buf;
2248 #ifdef FEAT_WINDOWS
2249     win_T	*wp = NULL;
2250 #endif
2251     pos_T	*fpos;
2252     colnr_T	col;
2253 
2254     buf = buflist_findnr(n);
2255     if (buf == NULL)
2256     {
2257 	if ((options & GETF_ALT) && n == 0)
2258 	    EMSG(_(e_noalt));
2259 	else
2260 	    EMSGN(_("E92: Buffer %ld not found"), n);
2261 	return FAIL;
2262     }
2263 
2264     /* if alternate file is the current buffer, nothing to do */
2265     if (buf == curbuf)
2266 	return OK;
2267 
2268     if (text_locked())
2269     {
2270 	text_locked_msg();
2271 	return FAIL;
2272     }
2273 #ifdef FEAT_AUTOCMD
2274     if (curbuf_locked())
2275 	return FAIL;
2276 #endif
2277 
2278     /* altfpos may be changed by getfile(), get it now */
2279     if (lnum == 0)
2280     {
2281 	fpos = buflist_findfpos(buf);
2282 	lnum = fpos->lnum;
2283 	col = fpos->col;
2284     }
2285     else
2286 	col = 0;
2287 
2288 #ifdef FEAT_WINDOWS
2289     if (options & GETF_SWITCH)
2290     {
2291 	/* If 'switchbuf' contains "useopen": jump to first window containing
2292 	 * "buf" if one exists */
2293 	if (swb_flags & SWB_USEOPEN)
2294 	    wp = buf_jump_open_win(buf);
2295 
2296 	/* If 'switchbuf' contains "usetab": jump to first window in any tab
2297 	 * page containing "buf" if one exists */
2298 	if (wp == NULL && (swb_flags & SWB_USETAB))
2299 	    wp = buf_jump_open_tab(buf);
2300 
2301 	/* If 'switchbuf' contains "split", "vsplit" or "newtab" and the
2302 	 * current buffer isn't empty: open new tab or window */
2303 	if (wp == NULL && (swb_flags & (SWB_VSPLIT | SWB_SPLIT | SWB_NEWTAB))
2304 							       && !bufempty())
2305 	{
2306 	    if (swb_flags & SWB_NEWTAB)
2307 		tabpage_new();
2308 	    else if (win_split(0, (swb_flags & SWB_VSPLIT) ? WSP_VERT : 0)
2309 								      == FAIL)
2310 		return FAIL;
2311 	    RESET_BINDING(curwin);
2312 	}
2313     }
2314 #endif
2315 
2316     ++RedrawingDisabled;
2317     if (getfile(buf->b_fnum, NULL, NULL, (options & GETF_SETMARK),
2318 							  lnum, forceit) <= 0)
2319     {
2320 	--RedrawingDisabled;
2321 
2322 	/* cursor is at to BOL and w_cursor.lnum is checked due to getfile() */
2323 	if (!p_sol && col != 0)
2324 	{
2325 	    curwin->w_cursor.col = col;
2326 	    check_cursor_col();
2327 #ifdef FEAT_VIRTUALEDIT
2328 	    curwin->w_cursor.coladd = 0;
2329 #endif
2330 	    curwin->w_set_curswant = TRUE;
2331 	}
2332 	return OK;
2333     }
2334     --RedrawingDisabled;
2335     return FAIL;
2336 }
2337 
2338 /*
2339  * go to the last know line number for the current buffer
2340  */
2341     void
2342 buflist_getfpos(void)
2343 {
2344     pos_T	*fpos;
2345 
2346     fpos = buflist_findfpos(curbuf);
2347 
2348     curwin->w_cursor.lnum = fpos->lnum;
2349     check_cursor_lnum();
2350 
2351     if (p_sol)
2352 	curwin->w_cursor.col = 0;
2353     else
2354     {
2355 	curwin->w_cursor.col = fpos->col;
2356 	check_cursor_col();
2357 #ifdef FEAT_VIRTUALEDIT
2358 	curwin->w_cursor.coladd = 0;
2359 #endif
2360 	curwin->w_set_curswant = TRUE;
2361     }
2362 }
2363 
2364 #if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL) || defined(PROTO)
2365 /*
2366  * Find file in buffer list by name (it has to be for the current window).
2367  * Returns NULL if not found.
2368  */
2369     buf_T *
2370 buflist_findname_exp(char_u *fname)
2371 {
2372     char_u	*ffname;
2373     buf_T	*buf = NULL;
2374 
2375     /* First make the name into a full path name */
2376     ffname = FullName_save(fname,
2377 #ifdef UNIX
2378 	    TRUE	    /* force expansion, get rid of symbolic links */
2379 #else
2380 	    FALSE
2381 #endif
2382 	    );
2383     if (ffname != NULL)
2384     {
2385 	buf = buflist_findname(ffname);
2386 	vim_free(ffname);
2387     }
2388     return buf;
2389 }
2390 #endif
2391 
2392 /*
2393  * Find file in buffer list by name (it has to be for the current window).
2394  * "ffname" must have a full path.
2395  * Skips dummy buffers.
2396  * Returns NULL if not found.
2397  */
2398     buf_T *
2399 buflist_findname(char_u *ffname)
2400 {
2401 #ifdef UNIX
2402     stat_T	st;
2403 
2404     if (mch_stat((char *)ffname, &st) < 0)
2405 	st.st_dev = (dev_T)-1;
2406     return buflist_findname_stat(ffname, &st);
2407 }
2408 
2409 /*
2410  * Same as buflist_findname(), but pass the stat structure to avoid getting it
2411  * twice for the same file.
2412  * Returns NULL if not found.
2413  */
2414     static buf_T *
2415 buflist_findname_stat(
2416     char_u	*ffname,
2417     stat_T	*stp)
2418 {
2419 #endif
2420     buf_T	*buf;
2421 
2422     /* Start at the last buffer, expect to find a match sooner. */
2423     for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
2424 	if ((buf->b_flags & BF_DUMMY) == 0 && !otherfile_buf(buf, ffname
2425 #ifdef UNIX
2426 		    , stp
2427 #endif
2428 		    ))
2429 	    return buf;
2430     return NULL;
2431 }
2432 
2433 #if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) \
2434 	|| defined(PROTO)
2435 /*
2436  * Find file in buffer list by a regexp pattern.
2437  * Return fnum of the found buffer.
2438  * Return < 0 for error.
2439  */
2440     int
2441 buflist_findpat(
2442     char_u	*pattern,
2443     char_u	*pattern_end,	/* pointer to first char after pattern */
2444     int		unlisted,	/* find unlisted buffers */
2445     int		diffmode UNUSED, /* find diff-mode buffers only */
2446     int		curtab_only)	/* find buffers in current tab only */
2447 {
2448     buf_T	*buf;
2449     int		match = -1;
2450     int		find_listed;
2451     char_u	*pat;
2452     char_u	*patend;
2453     int		attempt;
2454     char_u	*p;
2455     int		toggledollar;
2456 
2457     if (pattern_end == pattern + 1 && (*pattern == '%' || *pattern == '#'))
2458     {
2459 	if (*pattern == '%')
2460 	    match = curbuf->b_fnum;
2461 	else
2462 	    match = curwin->w_alt_fnum;
2463 #ifdef FEAT_DIFF
2464 	if (diffmode && !diff_mode_buf(buflist_findnr(match)))
2465 	    match = -1;
2466 #endif
2467     }
2468 
2469     /*
2470      * Try four ways of matching a listed buffer:
2471      * attempt == 0: without '^' or '$' (at any position)
2472      * attempt == 1: with '^' at start (only at position 0)
2473      * attempt == 2: with '$' at end (only match at end)
2474      * attempt == 3: with '^' at start and '$' at end (only full match)
2475      * Repeat this for finding an unlisted buffer if there was no matching
2476      * listed buffer.
2477      */
2478     else
2479     {
2480 	pat = file_pat_to_reg_pat(pattern, pattern_end, NULL, FALSE);
2481 	if (pat == NULL)
2482 	    return -1;
2483 	patend = pat + STRLEN(pat) - 1;
2484 	toggledollar = (patend > pat && *patend == '$');
2485 
2486 	/* First try finding a listed buffer.  If not found and "unlisted"
2487 	 * is TRUE, try finding an unlisted buffer. */
2488 	find_listed = TRUE;
2489 	for (;;)
2490 	{
2491 	    for (attempt = 0; attempt <= 3; ++attempt)
2492 	    {
2493 		regmatch_T	regmatch;
2494 
2495 		/* may add '^' and '$' */
2496 		if (toggledollar)
2497 		    *patend = (attempt < 2) ? NUL : '$'; /* add/remove '$' */
2498 		p = pat;
2499 		if (*p == '^' && !(attempt & 1))	 /* add/remove '^' */
2500 		    ++p;
2501 		regmatch.regprog = vim_regcomp(p, p_magic ? RE_MAGIC : 0);
2502 		if (regmatch.regprog == NULL)
2503 		{
2504 		    vim_free(pat);
2505 		    return -1;
2506 		}
2507 
2508 		for (buf = lastbuf; buf != NULL; buf = buf->b_prev)
2509 		    if (buf->b_p_bl == find_listed
2510 #ifdef FEAT_DIFF
2511 			    && (!diffmode || diff_mode_buf(buf))
2512 #endif
2513 			    && buflist_match(&regmatch, buf, FALSE) != NULL)
2514 		    {
2515 			if (curtab_only)
2516 			{
2517 			    /* Ignore the match if the buffer is not open in
2518 			     * the current tab. */
2519 #ifdef FEAT_WINDOWS
2520 			    win_T	*wp;
2521 
2522 			    FOR_ALL_WINDOWS(wp)
2523 				if (wp->w_buffer == buf)
2524 				    break;
2525 			    if (wp == NULL)
2526 				continue;
2527 #else
2528 			    if (curwin->w_buffer != buf)
2529 				continue;
2530 #endif
2531 			}
2532 			if (match >= 0)		/* already found a match */
2533 			{
2534 			    match = -2;
2535 			    break;
2536 			}
2537 			match = buf->b_fnum;	/* remember first match */
2538 		    }
2539 
2540 		vim_regfree(regmatch.regprog);
2541 		if (match >= 0)			/* found one match */
2542 		    break;
2543 	    }
2544 
2545 	    /* Only search for unlisted buffers if there was no match with
2546 	     * a listed buffer. */
2547 	    if (!unlisted || !find_listed || match != -1)
2548 		break;
2549 	    find_listed = FALSE;
2550 	}
2551 
2552 	vim_free(pat);
2553     }
2554 
2555     if (match == -2)
2556 	EMSG2(_("E93: More than one match for %s"), pattern);
2557     else if (match < 0)
2558 	EMSG2(_("E94: No matching buffer for %s"), pattern);
2559     return match;
2560 }
2561 #endif
2562 
2563 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2564 
2565 /*
2566  * Find all buffer names that match.
2567  * For command line expansion of ":buf" and ":sbuf".
2568  * Return OK if matches found, FAIL otherwise.
2569  */
2570     int
2571 ExpandBufnames(
2572     char_u	*pat,
2573     int		*num_file,
2574     char_u	***file,
2575     int		options)
2576 {
2577     int		count = 0;
2578     buf_T	*buf;
2579     int		round;
2580     char_u	*p;
2581     int		attempt;
2582     char_u	*patc;
2583 
2584     *num_file = 0;		    /* return values in case of FAIL */
2585     *file = NULL;
2586 
2587     /* Make a copy of "pat" and change "^" to "\(^\|[\/]\)". */
2588     if (*pat == '^')
2589     {
2590 	patc = alloc((unsigned)STRLEN(pat) + 11);
2591 	if (patc == NULL)
2592 	    return FAIL;
2593 	STRCPY(patc, "\\(^\\|[\\/]\\)");
2594 	STRCPY(patc + 11, pat + 1);
2595     }
2596     else
2597 	patc = pat;
2598 
2599     /*
2600      * attempt == 0: try match with    '\<', match at start of word
2601      * attempt == 1: try match without '\<', match anywhere
2602      */
2603     for (attempt = 0; attempt <= 1; ++attempt)
2604     {
2605 	regmatch_T	regmatch;
2606 
2607 	if (attempt > 0 && patc == pat)
2608 	    break;	/* there was no anchor, no need to try again */
2609 	regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC);
2610 	if (regmatch.regprog == NULL)
2611 	{
2612 	    if (patc != pat)
2613 		vim_free(patc);
2614 	    return FAIL;
2615 	}
2616 
2617 	/*
2618 	 * round == 1: Count the matches.
2619 	 * round == 2: Build the array to keep the matches.
2620 	 */
2621 	for (round = 1; round <= 2; ++round)
2622 	{
2623 	    count = 0;
2624 	    FOR_ALL_BUFFERS(buf)
2625 	    {
2626 		if (!buf->b_p_bl)	/* skip unlisted buffers */
2627 		    continue;
2628 		p = buflist_match(&regmatch, buf, p_wic);
2629 		if (p != NULL)
2630 		{
2631 		    if (round == 1)
2632 			++count;
2633 		    else
2634 		    {
2635 			if (options & WILD_HOME_REPLACE)
2636 			    p = home_replace_save(buf, p);
2637 			else
2638 			    p = vim_strsave(p);
2639 			(*file)[count++] = p;
2640 		    }
2641 		}
2642 	    }
2643 	    if (count == 0)	/* no match found, break here */
2644 		break;
2645 	    if (round == 1)
2646 	    {
2647 		*file = (char_u **)alloc((unsigned)(count * sizeof(char_u *)));
2648 		if (*file == NULL)
2649 		{
2650 		    vim_regfree(regmatch.regprog);
2651 		    if (patc != pat)
2652 			vim_free(patc);
2653 		    return FAIL;
2654 		}
2655 	    }
2656 	}
2657 	vim_regfree(regmatch.regprog);
2658 	if (count)		/* match(es) found, break here */
2659 	    break;
2660     }
2661 
2662     if (patc != pat)
2663 	vim_free(patc);
2664 
2665     *num_file = count;
2666     return (count == 0 ? FAIL : OK);
2667 }
2668 
2669 #endif /* FEAT_CMDL_COMPL */
2670 
2671 #ifdef HAVE_BUFLIST_MATCH
2672 /*
2673  * Check for a match on the file name for buffer "buf" with regprog "prog".
2674  */
2675     static char_u *
2676 buflist_match(
2677     regmatch_T	*rmp,
2678     buf_T	*buf,
2679     int		ignore_case)  /* when TRUE ignore case, when FALSE use 'fic' */
2680 {
2681     char_u	*match;
2682 
2683     /* First try the short file name, then the long file name. */
2684     match = fname_match(rmp, buf->b_sfname, ignore_case);
2685     if (match == NULL)
2686 	match = fname_match(rmp, buf->b_ffname, ignore_case);
2687 
2688     return match;
2689 }
2690 
2691 /*
2692  * Try matching the regexp in "prog" with file name "name".
2693  * Return "name" when there is a match, NULL when not.
2694  */
2695     static char_u *
2696 fname_match(
2697     regmatch_T	*rmp,
2698     char_u	*name,
2699     int		ignore_case)  /* when TRUE ignore case, when FALSE use 'fic' */
2700 {
2701     char_u	*match = NULL;
2702     char_u	*p;
2703 
2704     if (name != NULL)
2705     {
2706 	/* Ignore case when 'fileignorecase' or the argument is set. */
2707 	rmp->rm_ic = p_fic || ignore_case;
2708 	if (vim_regexec(rmp, name, (colnr_T)0))
2709 	    match = name;
2710 	else
2711 	{
2712 	    /* Replace $(HOME) with '~' and try matching again. */
2713 	    p = home_replace_save(NULL, name);
2714 	    if (p != NULL && vim_regexec(rmp, p, (colnr_T)0))
2715 		match = name;
2716 	    vim_free(p);
2717 	}
2718     }
2719 
2720     return match;
2721 }
2722 #endif
2723 
2724 /*
2725  * Find a file in the buffer list by buffer number.
2726  */
2727     buf_T *
2728 buflist_findnr(int nr)
2729 {
2730     char_u	key[VIM_SIZEOF_INT * 2 + 1];
2731     hashitem_T	*hi;
2732 
2733     if (nr == 0)
2734 	nr = curwin->w_alt_fnum;
2735     sprintf((char *)key, "%x", nr);
2736     hi = hash_find(&buf_hashtab, key);
2737 
2738     if (!HASHITEM_EMPTY(hi))
2739 	return (buf_T *)(hi->hi_key
2740 			     - ((unsigned)(curbuf->b_key - (char_u *)curbuf)));
2741     return NULL;
2742 }
2743 
2744 /*
2745  * Get name of file 'n' in the buffer list.
2746  * When the file has no name an empty string is returned.
2747  * home_replace() is used to shorten the file name (used for marks).
2748  * Returns a pointer to allocated memory, of NULL when failed.
2749  */
2750     char_u *
2751 buflist_nr2name(
2752     int		n,
2753     int		fullname,
2754     int		helptail)	/* for help buffers return tail only */
2755 {
2756     buf_T	*buf;
2757 
2758     buf = buflist_findnr(n);
2759     if (buf == NULL)
2760 	return NULL;
2761     return home_replace_save(helptail ? buf : NULL,
2762 				     fullname ? buf->b_ffname : buf->b_fname);
2763 }
2764 
2765 /*
2766  * Set the "lnum" and "col" for the buffer "buf" and the current window.
2767  * When "copy_options" is TRUE save the local window option values.
2768  * When "lnum" is 0 only do the options.
2769  */
2770     static void
2771 buflist_setfpos(
2772     buf_T	*buf,
2773     win_T	*win,
2774     linenr_T	lnum,
2775     colnr_T	col,
2776     int		copy_options)
2777 {
2778     wininfo_T	*wip;
2779 
2780     for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2781 	if (wip->wi_win == win)
2782 	    break;
2783     if (wip == NULL)
2784     {
2785 	/* allocate a new entry */
2786 	wip = (wininfo_T *)alloc_clear((unsigned)sizeof(wininfo_T));
2787 	if (wip == NULL)
2788 	    return;
2789 	wip->wi_win = win;
2790 	if (lnum == 0)		/* set lnum even when it's 0 */
2791 	    lnum = 1;
2792     }
2793     else
2794     {
2795 	/* remove the entry from the list */
2796 	if (wip->wi_prev)
2797 	    wip->wi_prev->wi_next = wip->wi_next;
2798 	else
2799 	    buf->b_wininfo = wip->wi_next;
2800 	if (wip->wi_next)
2801 	    wip->wi_next->wi_prev = wip->wi_prev;
2802 	if (copy_options && wip->wi_optset)
2803 	{
2804 	    clear_winopt(&wip->wi_opt);
2805 #ifdef FEAT_FOLDING
2806 	    deleteFoldRecurse(&wip->wi_folds);
2807 #endif
2808 	}
2809     }
2810     if (lnum != 0)
2811     {
2812 	wip->wi_fpos.lnum = lnum;
2813 	wip->wi_fpos.col = col;
2814     }
2815     if (copy_options)
2816     {
2817 	/* Save the window-specific option values. */
2818 	copy_winopt(&win->w_onebuf_opt, &wip->wi_opt);
2819 #ifdef FEAT_FOLDING
2820 	wip->wi_fold_manual = win->w_fold_manual;
2821 	cloneFoldGrowArray(&win->w_folds, &wip->wi_folds);
2822 #endif
2823 	wip->wi_optset = TRUE;
2824     }
2825 
2826     /* insert the entry in front of the list */
2827     wip->wi_next = buf->b_wininfo;
2828     buf->b_wininfo = wip;
2829     wip->wi_prev = NULL;
2830     if (wip->wi_next)
2831 	wip->wi_next->wi_prev = wip;
2832 
2833     return;
2834 }
2835 
2836 #ifdef FEAT_DIFF
2837 static int wininfo_other_tab_diff(wininfo_T *wip);
2838 
2839 /*
2840  * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
2841  * page.  That's because a diff is local to a tab page.
2842  */
2843     static int
2844 wininfo_other_tab_diff(wininfo_T *wip)
2845 {
2846     win_T	*wp;
2847 
2848     if (wip->wi_opt.wo_diff)
2849     {
2850 	FOR_ALL_WINDOWS(wp)
2851 	    /* return FALSE when it's a window in the current tab page, thus
2852 	     * the buffer was in diff mode here */
2853 	    if (wip->wi_win == wp)
2854 		return FALSE;
2855 	return TRUE;
2856     }
2857     return FALSE;
2858 }
2859 #endif
2860 
2861 /*
2862  * Find info for the current window in buffer "buf".
2863  * If not found, return the info for the most recently used window.
2864  * When "skip_diff_buffer" is TRUE avoid windows with 'diff' set that is in
2865  * another tab page.
2866  * Returns NULL when there isn't any info.
2867  */
2868     static wininfo_T *
2869 find_wininfo(
2870     buf_T	*buf,
2871     int		skip_diff_buffer UNUSED)
2872 {
2873     wininfo_T	*wip;
2874 
2875     for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2876 	if (wip->wi_win == curwin
2877 #ifdef FEAT_DIFF
2878 		&& (!skip_diff_buffer || !wininfo_other_tab_diff(wip))
2879 #endif
2880 	   )
2881 	    break;
2882 
2883     /* If no wininfo for curwin, use the first in the list (that doesn't have
2884      * 'diff' set and is in another tab page). */
2885     if (wip == NULL)
2886     {
2887 #ifdef FEAT_DIFF
2888 	if (skip_diff_buffer)
2889 	{
2890 	    for (wip = buf->b_wininfo; wip != NULL; wip = wip->wi_next)
2891 		if (!wininfo_other_tab_diff(wip))
2892 		    break;
2893 	}
2894 	else
2895 #endif
2896 	    wip = buf->b_wininfo;
2897     }
2898     return wip;
2899 }
2900 
2901 /*
2902  * Reset the local window options to the values last used in this window.
2903  * If the buffer wasn't used in this window before, use the values from
2904  * the most recently used window.  If the values were never set, use the
2905  * global values for the window.
2906  */
2907     void
2908 get_winopts(buf_T *buf)
2909 {
2910     wininfo_T	*wip;
2911 
2912     clear_winopt(&curwin->w_onebuf_opt);
2913 #ifdef FEAT_FOLDING
2914     clearFolding(curwin);
2915 #endif
2916 
2917     wip = find_wininfo(buf, TRUE);
2918     if (wip != NULL && wip->wi_optset)
2919     {
2920 	copy_winopt(&wip->wi_opt, &curwin->w_onebuf_opt);
2921 #ifdef FEAT_FOLDING
2922 	curwin->w_fold_manual = wip->wi_fold_manual;
2923 	curwin->w_foldinvalid = TRUE;
2924 	cloneFoldGrowArray(&wip->wi_folds, &curwin->w_folds);
2925 #endif
2926     }
2927     else
2928 	copy_winopt(&curwin->w_allbuf_opt, &curwin->w_onebuf_opt);
2929 
2930 #ifdef FEAT_FOLDING
2931     /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2932     if (p_fdls >= 0)
2933 	curwin->w_p_fdl = p_fdls;
2934 #endif
2935 #ifdef FEAT_SYN_HL
2936     check_colorcolumn(curwin);
2937 #endif
2938 }
2939 
2940 /*
2941  * Find the position (lnum and col) for the buffer 'buf' for the current
2942  * window.
2943  * Returns a pointer to no_position if no position is found.
2944  */
2945     pos_T *
2946 buflist_findfpos(buf_T *buf)
2947 {
2948     wininfo_T	*wip;
2949     static pos_T no_position = INIT_POS_T(1, 0, 0);
2950 
2951     wip = find_wininfo(buf, FALSE);
2952     if (wip != NULL)
2953 	return &(wip->wi_fpos);
2954     else
2955 	return &no_position;
2956 }
2957 
2958 /*
2959  * Find the lnum for the buffer 'buf' for the current window.
2960  */
2961     linenr_T
2962 buflist_findlnum(buf_T *buf)
2963 {
2964     return buflist_findfpos(buf)->lnum;
2965 }
2966 
2967 #if defined(FEAT_LISTCMDS) || defined(PROTO)
2968 /*
2969  * List all know file names (for :files and :buffers command).
2970  */
2971     void
2972 buflist_list(exarg_T *eap)
2973 {
2974     buf_T	*buf;
2975     int		len;
2976     int		i;
2977 
2978     for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
2979     {
2980 	/* skip unlisted buffers, unless ! was used */
2981 	if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
2982 		|| (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
2983 		|| (vim_strchr(eap->arg, '+')
2984 			&& ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
2985 		|| (vim_strchr(eap->arg, 'a')
2986 			 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
2987 		|| (vim_strchr(eap->arg, 'h')
2988 			 && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
2989 		|| (vim_strchr(eap->arg, '-') && buf->b_p_ma)
2990 		|| (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
2991 		|| (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
2992 		|| (vim_strchr(eap->arg, '%') && buf != curbuf)
2993 		|| (vim_strchr(eap->arg, '#')
2994 		      && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
2995 	    continue;
2996 	if (buf_spname(buf) != NULL)
2997 	    vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
2998 	else
2999 	    home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
3000 	if (message_filtered(NameBuff))
3001 	    continue;
3002 
3003 	msg_putchar('\n');
3004 	len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
3005 		buf->b_fnum,
3006 		buf->b_p_bl ? ' ' : 'u',
3007 		buf == curbuf ? '%' :
3008 			(curwin->w_alt_fnum == buf->b_fnum ? '#' : ' '),
3009 		buf->b_ml.ml_mfp == NULL ? ' ' :
3010 			(buf->b_nwindows == 0 ? 'h' : 'a'),
3011 		!buf->b_p_ma ? '-' : (buf->b_p_ro ? '=' : ' '),
3012 		(buf->b_flags & BF_READERR) ? 'x'
3013 					    : (bufIsChanged(buf) ? '+' : ' '),
3014 		NameBuff);
3015 	if (len > IOSIZE - 20)
3016 	    len = IOSIZE - 20;
3017 
3018 	/* put "line 999" in column 40 or after the file name */
3019 	i = 40 - vim_strsize(IObuff);
3020 	do
3021 	{
3022 	    IObuff[len++] = ' ';
3023 	} while (--i > 0 && len < IOSIZE - 18);
3024 	vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len),
3025 		_("line %ld"), buf == curbuf ? curwin->w_cursor.lnum
3026 					       : (long)buflist_findlnum(buf));
3027 	msg_outtrans(IObuff);
3028 	out_flush();	    /* output one line at a time */
3029 	ui_breakcheck();
3030     }
3031 }
3032 #endif
3033 
3034 /*
3035  * Get file name and line number for file 'fnum'.
3036  * Used by DoOneCmd() for translating '%' and '#'.
3037  * Used by insert_reg() and cmdline_paste() for '#' register.
3038  * Return FAIL if not found, OK for success.
3039  */
3040     int
3041 buflist_name_nr(
3042     int		fnum,
3043     char_u	**fname,
3044     linenr_T	*lnum)
3045 {
3046     buf_T	*buf;
3047 
3048     buf = buflist_findnr(fnum);
3049     if (buf == NULL || buf->b_fname == NULL)
3050 	return FAIL;
3051 
3052     *fname = buf->b_fname;
3053     *lnum = buflist_findlnum(buf);
3054 
3055     return OK;
3056 }
3057 
3058 /*
3059  * Set the file name for "buf"' to 'ffname', short file name to 'sfname'.
3060  * The file name with the full path is also remembered, for when :cd is used.
3061  * Returns FAIL for failure (file name already in use by other buffer)
3062  *	OK otherwise.
3063  */
3064     int
3065 setfname(
3066     buf_T	*buf,
3067     char_u	*ffname,
3068     char_u	*sfname,
3069     int		message)	/* give message when buffer already exists */
3070 {
3071     buf_T	*obuf = NULL;
3072 #ifdef UNIX
3073     stat_T	st;
3074 #endif
3075 
3076     if (ffname == NULL || *ffname == NUL)
3077     {
3078 	/* Removing the name. */
3079 	vim_free(buf->b_ffname);
3080 	vim_free(buf->b_sfname);
3081 	buf->b_ffname = NULL;
3082 	buf->b_sfname = NULL;
3083 #ifdef UNIX
3084 	st.st_dev = (dev_T)-1;
3085 #endif
3086     }
3087     else
3088     {
3089 	fname_expand(buf, &ffname, &sfname); /* will allocate ffname */
3090 	if (ffname == NULL)		    /* out of memory */
3091 	    return FAIL;
3092 
3093 	/*
3094 	 * if the file name is already used in another buffer:
3095 	 * - if the buffer is loaded, fail
3096 	 * - if the buffer is not loaded, delete it from the list
3097 	 */
3098 #ifdef UNIX
3099 	if (mch_stat((char *)ffname, &st) < 0)
3100 	    st.st_dev = (dev_T)-1;
3101 #endif
3102 	if (!(buf->b_flags & BF_DUMMY))
3103 #ifdef UNIX
3104 	    obuf = buflist_findname_stat(ffname, &st);
3105 #else
3106 	    obuf = buflist_findname(ffname);
3107 #endif
3108 	if (obuf != NULL && obuf != buf)
3109 	{
3110 	    if (obuf->b_ml.ml_mfp != NULL)	/* it's loaded, fail */
3111 	    {
3112 		if (message)
3113 		    EMSG(_("E95: Buffer with this name already exists"));
3114 		vim_free(ffname);
3115 		return FAIL;
3116 	    }
3117 	    /* delete from the list */
3118 	    close_buffer(NULL, obuf, DOBUF_WIPE, FALSE);
3119 	}
3120 	sfname = vim_strsave(sfname);
3121 	if (ffname == NULL || sfname == NULL)
3122 	{
3123 	    vim_free(sfname);
3124 	    vim_free(ffname);
3125 	    return FAIL;
3126 	}
3127 #ifdef USE_FNAME_CASE
3128 # ifdef USE_LONG_FNAME
3129 	if (USE_LONG_FNAME)
3130 # endif
3131 	    fname_case(sfname, 0);    /* set correct case for short file name */
3132 #endif
3133 	vim_free(buf->b_ffname);
3134 	vim_free(buf->b_sfname);
3135 	buf->b_ffname = ffname;
3136 	buf->b_sfname = sfname;
3137     }
3138     buf->b_fname = buf->b_sfname;
3139 #ifdef UNIX
3140     if (st.st_dev == (dev_T)-1)
3141 	buf->b_dev_valid = FALSE;
3142     else
3143     {
3144 	buf->b_dev_valid = TRUE;
3145 	buf->b_dev = st.st_dev;
3146 	buf->b_ino = st.st_ino;
3147     }
3148 #endif
3149 
3150     buf->b_shortname = FALSE;
3151 
3152     buf_name_changed(buf);
3153     return OK;
3154 }
3155 
3156 /*
3157  * Crude way of changing the name of a buffer.  Use with care!
3158  * The name should be relative to the current directory.
3159  */
3160     void
3161 buf_set_name(int fnum, char_u *name)
3162 {
3163     buf_T	*buf;
3164 
3165     buf = buflist_findnr(fnum);
3166     if (buf != NULL)
3167     {
3168 	vim_free(buf->b_sfname);
3169 	vim_free(buf->b_ffname);
3170 	buf->b_ffname = vim_strsave(name);
3171 	buf->b_sfname = NULL;
3172 	/* Allocate ffname and expand into full path.  Also resolves .lnk
3173 	 * files on Win32. */
3174 	fname_expand(buf, &buf->b_ffname, &buf->b_sfname);
3175 	buf->b_fname = buf->b_sfname;
3176     }
3177 }
3178 
3179 /*
3180  * Take care of what needs to be done when the name of buffer "buf" has
3181  * changed.
3182  */
3183     void
3184 buf_name_changed(buf_T *buf)
3185 {
3186     /*
3187      * If the file name changed, also change the name of the swapfile
3188      */
3189     if (buf->b_ml.ml_mfp != NULL)
3190 	ml_setname(buf);
3191 
3192     if (curwin->w_buffer == buf)
3193 	check_arg_idx(curwin);	/* check file name for arg list */
3194 #ifdef FEAT_TITLE
3195     maketitle();		/* set window title */
3196 #endif
3197 #ifdef FEAT_WINDOWS
3198     status_redraw_all();	/* status lines need to be redrawn */
3199 #endif
3200     fmarks_check_names(buf);	/* check named file marks */
3201     ml_timestamp(buf);		/* reset timestamp */
3202 }
3203 
3204 /*
3205  * set alternate file name for current window
3206  *
3207  * Used by do_one_cmd(), do_write() and do_ecmd().
3208  * Return the buffer.
3209  */
3210     buf_T *
3211 setaltfname(
3212     char_u	*ffname,
3213     char_u	*sfname,
3214     linenr_T	lnum)
3215 {
3216     buf_T	*buf;
3217 
3218     /* Create a buffer.  'buflisted' is not set if it's a new buffer */
3219     buf = buflist_new(ffname, sfname, lnum, 0);
3220     if (buf != NULL && !cmdmod.keepalt)
3221 	curwin->w_alt_fnum = buf->b_fnum;
3222     return buf;
3223 }
3224 
3225 /*
3226  * Get alternate file name for current window.
3227  * Return NULL if there isn't any, and give error message if requested.
3228  */
3229     char_u  *
3230 getaltfname(
3231     int		errmsg)		/* give error message */
3232 {
3233     char_u	*fname;
3234     linenr_T	dummy;
3235 
3236     if (buflist_name_nr(0, &fname, &dummy) == FAIL)
3237     {
3238 	if (errmsg)
3239 	    EMSG(_(e_noalt));
3240 	return NULL;
3241     }
3242     return fname;
3243 }
3244 
3245 /*
3246  * Add a file name to the buflist and return its number.
3247  * Uses same flags as buflist_new(), except BLN_DUMMY.
3248  *
3249  * used by qf_init(), main() and doarglist()
3250  */
3251     int
3252 buflist_add(char_u *fname, int flags)
3253 {
3254     buf_T	*buf;
3255 
3256     buf = buflist_new(fname, NULL, (linenr_T)0, flags);
3257     if (buf != NULL)
3258 	return buf->b_fnum;
3259     return 0;
3260 }
3261 
3262 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
3263 /*
3264  * Adjust slashes in file names.  Called after 'shellslash' was set.
3265  */
3266     void
3267 buflist_slash_adjust(void)
3268 {
3269     buf_T	*bp;
3270 
3271     FOR_ALL_BUFFERS(bp)
3272     {
3273 	if (bp->b_ffname != NULL)
3274 	    slash_adjust(bp->b_ffname);
3275 	if (bp->b_sfname != NULL)
3276 	    slash_adjust(bp->b_sfname);
3277     }
3278 }
3279 #endif
3280 
3281 /*
3282  * Set alternate cursor position for the current buffer and window "win".
3283  * Also save the local window option values.
3284  */
3285     void
3286 buflist_altfpos(win_T *win)
3287 {
3288     buflist_setfpos(curbuf, win, win->w_cursor.lnum, win->w_cursor.col, TRUE);
3289 }
3290 
3291 /*
3292  * Return TRUE if 'ffname' is not the same file as current file.
3293  * Fname must have a full path (expanded by mch_FullName()).
3294  */
3295     int
3296 otherfile(char_u *ffname)
3297 {
3298     return otherfile_buf(curbuf, ffname
3299 #ifdef UNIX
3300 	    , NULL
3301 #endif
3302 	    );
3303 }
3304 
3305     static int
3306 otherfile_buf(
3307     buf_T		*buf,
3308     char_u		*ffname
3309 #ifdef UNIX
3310     , stat_T		*stp
3311 #endif
3312     )
3313 {
3314     /* no name is different */
3315     if (ffname == NULL || *ffname == NUL || buf->b_ffname == NULL)
3316 	return TRUE;
3317     if (fnamecmp(ffname, buf->b_ffname) == 0)
3318 	return FALSE;
3319 #ifdef UNIX
3320     {
3321 	stat_T	    st;
3322 
3323 	/* If no stat_T given, get it now */
3324 	if (stp == NULL)
3325 	{
3326 	    if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0)
3327 		st.st_dev = (dev_T)-1;
3328 	    stp = &st;
3329 	}
3330 	/* Use dev/ino to check if the files are the same, even when the names
3331 	 * are different (possible with links).  Still need to compare the
3332 	 * name above, for when the file doesn't exist yet.
3333 	 * Problem: The dev/ino changes when a file is deleted (and created
3334 	 * again) and remains the same when renamed/moved.  We don't want to
3335 	 * mch_stat() each buffer each time, that would be too slow.  Get the
3336 	 * dev/ino again when they appear to match, but not when they appear
3337 	 * to be different: Could skip a buffer when it's actually the same
3338 	 * file. */
3339 	if (buf_same_ino(buf, stp))
3340 	{
3341 	    buf_setino(buf);
3342 	    if (buf_same_ino(buf, stp))
3343 		return FALSE;
3344 	}
3345     }
3346 #endif
3347     return TRUE;
3348 }
3349 
3350 #if defined(UNIX) || defined(PROTO)
3351 /*
3352  * Set inode and device number for a buffer.
3353  * Must always be called when b_fname is changed!.
3354  */
3355     void
3356 buf_setino(buf_T *buf)
3357 {
3358     stat_T	st;
3359 
3360     if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0)
3361     {
3362 	buf->b_dev_valid = TRUE;
3363 	buf->b_dev = st.st_dev;
3364 	buf->b_ino = st.st_ino;
3365     }
3366     else
3367 	buf->b_dev_valid = FALSE;
3368 }
3369 
3370 /*
3371  * Return TRUE if dev/ino in buffer "buf" matches with "stp".
3372  */
3373     static int
3374 buf_same_ino(
3375     buf_T	*buf,
3376     stat_T	*stp)
3377 {
3378     return (buf->b_dev_valid
3379 	    && stp->st_dev == buf->b_dev
3380 	    && stp->st_ino == buf->b_ino);
3381 }
3382 #endif
3383 
3384 /*
3385  * Print info about the current buffer.
3386  */
3387     void
3388 fileinfo(
3389     int fullname,	    /* when non-zero print full path */
3390     int shorthelp,
3391     int	dont_truncate)
3392 {
3393     char_u	*name;
3394     int		n;
3395     char_u	*p;
3396     char_u	*buffer;
3397     size_t	len;
3398 
3399     buffer = alloc(IOSIZE);
3400     if (buffer == NULL)
3401 	return;
3402 
3403     if (fullname > 1)	    /* 2 CTRL-G: include buffer number */
3404     {
3405 	vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum);
3406 	p = buffer + STRLEN(buffer);
3407     }
3408     else
3409 	p = buffer;
3410 
3411     *p++ = '"';
3412     if (buf_spname(curbuf) != NULL)
3413 	vim_strncpy(p, buf_spname(curbuf), IOSIZE - (p - buffer) - 1);
3414     else
3415     {
3416 	if (!fullname && curbuf->b_fname != NULL)
3417 	    name = curbuf->b_fname;
3418 	else
3419 	    name = curbuf->b_ffname;
3420 	home_replace(shorthelp ? curbuf : NULL, name, p,
3421 					  (int)(IOSIZE - (p - buffer)), TRUE);
3422     }
3423 
3424     vim_snprintf_add((char *)buffer, IOSIZE, "\"%s%s%s%s%s%s",
3425 	    curbufIsChanged() ? (shortmess(SHM_MOD)
3426 					  ?  " [+]" : _(" [Modified]")) : " ",
3427 	    (curbuf->b_flags & BF_NOTEDITED)
3428 #ifdef FEAT_QUICKFIX
3429 		    && !bt_dontwrite(curbuf)
3430 #endif
3431 					? _("[Not edited]") : "",
3432 	    (curbuf->b_flags & BF_NEW)
3433 #ifdef FEAT_QUICKFIX
3434 		    && !bt_dontwrite(curbuf)
3435 #endif
3436 					? _("[New file]") : "",
3437 	    (curbuf->b_flags & BF_READERR) ? _("[Read errors]") : "",
3438 	    curbuf->b_p_ro ? (shortmess(SHM_RO) ? _("[RO]")
3439 						      : _("[readonly]")) : "",
3440 	    (curbufIsChanged() || (curbuf->b_flags & BF_WRITE_MASK)
3441 							  || curbuf->b_p_ro) ?
3442 								    " " : "");
3443     /* With 32 bit longs and more than 21,474,836 lines multiplying by 100
3444      * causes an overflow, thus for large numbers divide instead. */
3445     if (curwin->w_cursor.lnum > 1000000L)
3446 	n = (int)(((long)curwin->w_cursor.lnum) /
3447 				   ((long)curbuf->b_ml.ml_line_count / 100L));
3448     else
3449 	n = (int)(((long)curwin->w_cursor.lnum * 100L) /
3450 					    (long)curbuf->b_ml.ml_line_count);
3451     if (curbuf->b_ml.ml_flags & ML_EMPTY)
3452     {
3453 	vim_snprintf_add((char *)buffer, IOSIZE, "%s", _(no_lines_msg));
3454     }
3455 #ifdef FEAT_CMDL_INFO
3456     else if (p_ru)
3457     {
3458 	/* Current line and column are already on the screen -- webb */
3459 	if (curbuf->b_ml.ml_line_count == 1)
3460 	    vim_snprintf_add((char *)buffer, IOSIZE, _("1 line --%d%%--"), n);
3461 	else
3462 	    vim_snprintf_add((char *)buffer, IOSIZE, _("%ld lines --%d%%--"),
3463 					 (long)curbuf->b_ml.ml_line_count, n);
3464     }
3465 #endif
3466     else
3467     {
3468 	vim_snprintf_add((char *)buffer, IOSIZE,
3469 		_("line %ld of %ld --%d%%-- col "),
3470 		(long)curwin->w_cursor.lnum,
3471 		(long)curbuf->b_ml.ml_line_count,
3472 		n);
3473 	validate_virtcol();
3474 	len = STRLEN(buffer);
3475 	col_print(buffer + len, IOSIZE - len,
3476 		   (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1);
3477     }
3478 
3479     (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE));
3480 
3481     if (dont_truncate)
3482     {
3483 	/* Temporarily set msg_scroll to avoid the message being truncated.
3484 	 * First call msg_start() to get the message in the right place. */
3485 	msg_start();
3486 	n = msg_scroll;
3487 	msg_scroll = TRUE;
3488 	msg(buffer);
3489 	msg_scroll = n;
3490     }
3491     else
3492     {
3493 	p = msg_trunc_attr(buffer, FALSE, 0);
3494 	if (restart_edit != 0 || (msg_scrolled && !need_wait_return))
3495 	    /* Need to repeat the message after redrawing when:
3496 	     * - When restart_edit is set (otherwise there will be a delay
3497 	     *   before redrawing).
3498 	     * - When the screen was scrolled but there is no wait-return
3499 	     *   prompt. */
3500 	    set_keep_msg(p, 0);
3501     }
3502 
3503     vim_free(buffer);
3504 }
3505 
3506     void
3507 col_print(
3508     char_u  *buf,
3509     size_t  buflen,
3510     int	    col,
3511     int	    vcol)
3512 {
3513     if (col == vcol)
3514 	vim_snprintf((char *)buf, buflen, "%d", col);
3515     else
3516 	vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
3517 }
3518 
3519 #if defined(FEAT_TITLE) || defined(PROTO)
3520 /*
3521  * put file name in title bar of window and in icon title
3522  */
3523 
3524 static char_u *lasttitle = NULL;
3525 static char_u *lasticon = NULL;
3526 
3527     void
3528 maketitle(void)
3529 {
3530     char_u	*p;
3531     char_u	*t_str = NULL;
3532     char_u	*i_name;
3533     char_u	*i_str = NULL;
3534     int		maxlen = 0;
3535     int		len;
3536     int		mustset;
3537     char_u	buf[IOSIZE];
3538     int		off;
3539 
3540     if (!redrawing())
3541     {
3542 	/* Postpone updating the title when 'lazyredraw' is set. */
3543 	need_maketitle = TRUE;
3544 	return;
3545     }
3546 
3547     need_maketitle = FALSE;
3548     if (!p_title && !p_icon && lasttitle == NULL && lasticon == NULL)
3549 	return;
3550 
3551     if (p_title)
3552     {
3553 	if (p_titlelen > 0)
3554 	{
3555 	    maxlen = p_titlelen * Columns / 100;
3556 	    if (maxlen < 10)
3557 		maxlen = 10;
3558 	}
3559 
3560 	t_str = buf;
3561 	if (*p_titlestring != NUL)
3562 	{
3563 #ifdef FEAT_STL_OPT
3564 	    if (stl_syntax & STL_IN_TITLE)
3565 	    {
3566 		int	use_sandbox = FALSE;
3567 		int	save_called_emsg = called_emsg;
3568 
3569 # ifdef FEAT_EVAL
3570 		use_sandbox = was_set_insecurely((char_u *)"titlestring", 0);
3571 # endif
3572 		called_emsg = FALSE;
3573 		build_stl_str_hl(curwin, t_str, sizeof(buf),
3574 					      p_titlestring, use_sandbox,
3575 					      0, maxlen, NULL, NULL);
3576 		if (called_emsg)
3577 		    set_string_option_direct((char_u *)"titlestring", -1,
3578 					   (char_u *)"", OPT_FREE, SID_ERROR);
3579 		called_emsg |= save_called_emsg;
3580 	    }
3581 	    else
3582 #endif
3583 		t_str = p_titlestring;
3584 	}
3585 	else
3586 	{
3587 	    /* format: "fname + (path) (1 of 2) - VIM" */
3588 
3589 #define SPACE_FOR_FNAME (IOSIZE - 100)
3590 #define SPACE_FOR_DIR   (IOSIZE - 20)
3591 #define SPACE_FOR_ARGNR (IOSIZE - 10)  /* at least room for " - VIM" */
3592 	    if (curbuf->b_fname == NULL)
3593 		vim_strncpy(buf, (char_u *)_("[No Name]"), SPACE_FOR_FNAME);
3594 	    else
3595 	    {
3596 		p = transstr(gettail(curbuf->b_fname));
3597 		vim_strncpy(buf, p, SPACE_FOR_FNAME);
3598 		vim_free(p);
3599 	    }
3600 
3601 	    switch (bufIsChanged(curbuf)
3602 		    + (curbuf->b_p_ro * 2)
3603 		    + (!curbuf->b_p_ma * 4))
3604 	    {
3605 		case 1: STRCAT(buf, " +"); break;
3606 		case 2: STRCAT(buf, " ="); break;
3607 		case 3: STRCAT(buf, " =+"); break;
3608 		case 4:
3609 		case 6: STRCAT(buf, " -"); break;
3610 		case 5:
3611 		case 7: STRCAT(buf, " -+"); break;
3612 	    }
3613 
3614 	    if (curbuf->b_fname != NULL)
3615 	    {
3616 		/* Get path of file, replace home dir with ~ */
3617 		off = (int)STRLEN(buf);
3618 		buf[off++] = ' ';
3619 		buf[off++] = '(';
3620 		home_replace(curbuf, curbuf->b_ffname,
3621 					buf + off, SPACE_FOR_DIR - off, TRUE);
3622 #ifdef BACKSLASH_IN_FILENAME
3623 		/* avoid "c:/name" to be reduced to "c" */
3624 		if (isalpha(buf[off]) && buf[off + 1] == ':')
3625 		    off += 2;
3626 #endif
3627 		/* remove the file name */
3628 		p = gettail_sep(buf + off);
3629 		if (p == buf + off)
3630 		    /* must be a help buffer */
3631 		    vim_strncpy(buf + off, (char_u *)_("help"),
3632 					   (size_t)(SPACE_FOR_DIR - off - 1));
3633 		else
3634 		    *p = NUL;
3635 
3636 		/* Translate unprintable chars and concatenate.  Keep some
3637 		 * room for the server name.  When there is no room (very long
3638 		 * file name) use (...). */
3639 		if (off < SPACE_FOR_DIR)
3640 		{
3641 		    p = transstr(buf + off);
3642 		    vim_strncpy(buf + off, p, (size_t)(SPACE_FOR_DIR - off));
3643 		    vim_free(p);
3644 		}
3645 		else
3646 		{
3647 		    vim_strncpy(buf + off, (char_u *)"...",
3648 					     (size_t)(SPACE_FOR_ARGNR - off));
3649 		}
3650 		STRCAT(buf, ")");
3651 	    }
3652 
3653 	    append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE);
3654 
3655 #if defined(FEAT_CLIENTSERVER)
3656 	    if (serverName != NULL)
3657 	    {
3658 		STRCAT(buf, " - ");
3659 		vim_strcat(buf, serverName, IOSIZE);
3660 	    }
3661 	    else
3662 #endif
3663 		STRCAT(buf, " - VIM");
3664 
3665 	    if (maxlen > 0)
3666 	    {
3667 		/* make it shorter by removing a bit in the middle */
3668 		if (vim_strsize(buf) > maxlen)
3669 		    trunc_string(buf, buf, maxlen, IOSIZE);
3670 	    }
3671 	}
3672     }
3673     mustset = ti_change(t_str, &lasttitle);
3674 
3675     if (p_icon)
3676     {
3677 	i_str = buf;
3678 	if (*p_iconstring != NUL)
3679 	{
3680 #ifdef FEAT_STL_OPT
3681 	    if (stl_syntax & STL_IN_ICON)
3682 	    {
3683 		int	use_sandbox = FALSE;
3684 		int	save_called_emsg = called_emsg;
3685 
3686 # ifdef FEAT_EVAL
3687 		use_sandbox = was_set_insecurely((char_u *)"iconstring", 0);
3688 # endif
3689 		called_emsg = FALSE;
3690 		build_stl_str_hl(curwin, i_str, sizeof(buf),
3691 						    p_iconstring, use_sandbox,
3692 						    0, 0, NULL, NULL);
3693 		if (called_emsg)
3694 		    set_string_option_direct((char_u *)"iconstring", -1,
3695 					   (char_u *)"", OPT_FREE, SID_ERROR);
3696 		called_emsg |= save_called_emsg;
3697 	    }
3698 	    else
3699 #endif
3700 		i_str = p_iconstring;
3701 	}
3702 	else
3703 	{
3704 	    if (buf_spname(curbuf) != NULL)
3705 		i_name = buf_spname(curbuf);
3706 	    else		    /* use file name only in icon */
3707 		i_name = gettail(curbuf->b_ffname);
3708 	    *i_str = NUL;
3709 	    /* Truncate name at 100 bytes. */
3710 	    len = (int)STRLEN(i_name);
3711 	    if (len > 100)
3712 	    {
3713 		len -= 100;
3714 #ifdef FEAT_MBYTE
3715 		if (has_mbyte)
3716 		    len += (*mb_tail_off)(i_name, i_name + len) + 1;
3717 #endif
3718 		i_name += len;
3719 	    }
3720 	    STRCPY(i_str, i_name);
3721 	    trans_characters(i_str, IOSIZE);
3722 	}
3723     }
3724 
3725     mustset |= ti_change(i_str, &lasticon);
3726 
3727     if (mustset)
3728 	resettitle();
3729 }
3730 
3731 /*
3732  * Used for title and icon: Check if "str" differs from "*last".  Set "*last"
3733  * from "str" if it does.
3734  * Return TRUE when "*last" changed.
3735  */
3736     static int
3737 ti_change(char_u *str, char_u **last)
3738 {
3739     if ((str == NULL) != (*last == NULL)
3740 	    || (str != NULL && *last != NULL && STRCMP(str, *last) != 0))
3741     {
3742 	vim_free(*last);
3743 	if (str == NULL)
3744 	    *last = NULL;
3745 	else
3746 	    *last = vim_strsave(str);
3747 	return TRUE;
3748     }
3749     return FALSE;
3750 }
3751 
3752 /*
3753  * Put current window title back (used after calling a shell)
3754  */
3755     void
3756 resettitle(void)
3757 {
3758     mch_settitle(lasttitle, lasticon);
3759 }
3760 
3761 # if defined(EXITFREE) || defined(PROTO)
3762     void
3763 free_titles(void)
3764 {
3765     vim_free(lasttitle);
3766     vim_free(lasticon);
3767 }
3768 # endif
3769 
3770 #endif /* FEAT_TITLE */
3771 
3772 #if defined(FEAT_STL_OPT) || defined(FEAT_GUI_TABLINE) || defined(PROTO)
3773 /*
3774  * Build a string from the status line items in "fmt".
3775  * Return length of string in screen cells.
3776  *
3777  * Normally works for window "wp", except when working for 'tabline' then it
3778  * is "curwin".
3779  *
3780  * Items are drawn interspersed with the text that surrounds it
3781  * Specials: %-<wid>(xxx%) => group, %= => middle marker, %< => truncation
3782  * Item: %-<minwid>.<maxwid><itemch> All but <itemch> are optional
3783  *
3784  * If maxwidth is not zero, the string will be filled at any middle marker
3785  * or truncated if too long, fillchar is used for all whitespace.
3786  */
3787     int
3788 build_stl_str_hl(
3789     win_T	*wp,
3790     char_u	*out,		/* buffer to write into != NameBuff */
3791     size_t	outlen,		/* length of out[] */
3792     char_u	*fmt,
3793     int		use_sandbox UNUSED, /* "fmt" was set insecurely, use sandbox */
3794     int		fillchar,
3795     int		maxwidth,
3796     struct stl_hlrec *hltab,	/* return: HL attributes (can be NULL) */
3797     struct stl_hlrec *tabtab)	/* return: tab page nrs (can be NULL) */
3798 {
3799     char_u	*p;
3800     char_u	*s;
3801     char_u	*t;
3802     int		byteval;
3803 #ifdef FEAT_EVAL
3804     win_T	*o_curwin;
3805     buf_T	*o_curbuf;
3806 #endif
3807     int		empty_line;
3808     colnr_T	virtcol;
3809     long	l;
3810     long	n;
3811     int		prevchar_isflag;
3812     int		prevchar_isitem;
3813     int		itemisflag;
3814     int		fillable;
3815     char_u	*str;
3816     long	num;
3817     int		width;
3818     int		itemcnt;
3819     int		curitem;
3820     int		groupitem[STL_MAX_ITEM];
3821     int		groupdepth;
3822     struct stl_item
3823     {
3824 	char_u		*start;
3825 	int		minwid;
3826 	int		maxwid;
3827 	enum
3828 	{
3829 	    Normal,
3830 	    Empty,
3831 	    Group,
3832 	    Middle,
3833 	    Highlight,
3834 	    TabPage,
3835 	    Trunc
3836 	}		type;
3837     }		item[STL_MAX_ITEM];
3838     int		minwid;
3839     int		maxwid;
3840     int		zeropad;
3841     char_u	base;
3842     char_u	opt;
3843 #define TMPLEN 70
3844     char_u	tmp[TMPLEN];
3845     char_u	*usefmt = fmt;
3846     struct stl_hlrec *sp;
3847 
3848 #ifdef FEAT_EVAL
3849     /*
3850      * When the format starts with "%!" then evaluate it as an expression and
3851      * use the result as the actual format string.
3852      */
3853     if (fmt[0] == '%' && fmt[1] == '!')
3854     {
3855 	usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3856 	if (usefmt == NULL)
3857 	    usefmt = fmt;
3858     }
3859 #endif
3860 
3861     if (fillchar == 0)
3862 	fillchar = ' ';
3863 #ifdef FEAT_MBYTE
3864     /* Can't handle a multi-byte fill character yet. */
3865     else if (mb_char2len(fillchar) > 1)
3866 	fillchar = '-';
3867 #endif
3868 
3869     /* Get line & check if empty (cursorpos will show "0-1").  Note that
3870      * p will become invalid when getting another buffer line. */
3871     p = ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, FALSE);
3872     empty_line = (*p == NUL);
3873 
3874     /* Get the byte value now, in case we need it below. This is more
3875      * efficient than making a copy of the line. */
3876     if (wp->w_cursor.col > (colnr_T)STRLEN(p))
3877 	byteval = 0;
3878     else
3879 #ifdef FEAT_MBYTE
3880 	byteval = (*mb_ptr2char)(p + wp->w_cursor.col);
3881 #else
3882 	byteval = p[wp->w_cursor.col];
3883 #endif
3884 
3885     groupdepth = 0;
3886     p = out;
3887     curitem = 0;
3888     prevchar_isflag = TRUE;
3889     prevchar_isitem = FALSE;
3890     for (s = usefmt; *s; )
3891     {
3892 	if (curitem == STL_MAX_ITEM)
3893 	{
3894 	    /* There are too many items.  Add the error code to the statusline
3895 	     * to give the user a hint about what went wrong. */
3896 	    if (p + 6 < out + outlen)
3897 	    {
3898 		mch_memmove(p, " E541", (size_t)5);
3899 		p += 5;
3900 	    }
3901 	    break;
3902 	}
3903 
3904 	if (*s != NUL && *s != '%')
3905 	    prevchar_isflag = prevchar_isitem = FALSE;
3906 
3907 	/*
3908 	 * Handle up to the next '%' or the end.
3909 	 */
3910 	while (*s != NUL && *s != '%' && p + 1 < out + outlen)
3911 	    *p++ = *s++;
3912 	if (*s == NUL || p + 1 >= out + outlen)
3913 	    break;
3914 
3915 	/*
3916 	 * Handle one '%' item.
3917 	 */
3918 	s++;
3919 	if (*s == NUL)  /* ignore trailing % */
3920 	    break;
3921 	if (*s == '%')
3922 	{
3923 	    if (p + 1 >= out + outlen)
3924 		break;
3925 	    *p++ = *s++;
3926 	    prevchar_isflag = prevchar_isitem = FALSE;
3927 	    continue;
3928 	}
3929 	if (*s == STL_MIDDLEMARK)
3930 	{
3931 	    s++;
3932 	    if (groupdepth > 0)
3933 		continue;
3934 	    item[curitem].type = Middle;
3935 	    item[curitem++].start = p;
3936 	    continue;
3937 	}
3938 	if (*s == STL_TRUNCMARK)
3939 	{
3940 	    s++;
3941 	    item[curitem].type = Trunc;
3942 	    item[curitem++].start = p;
3943 	    continue;
3944 	}
3945 	if (*s == ')')
3946 	{
3947 	    s++;
3948 	    if (groupdepth < 1)
3949 		continue;
3950 	    groupdepth--;
3951 
3952 	    t = item[groupitem[groupdepth]].start;
3953 	    *p = NUL;
3954 	    l = vim_strsize(t);
3955 	    if (curitem > groupitem[groupdepth] + 1
3956 		    && item[groupitem[groupdepth]].minwid == 0)
3957 	    {
3958 		/* remove group if all items are empty */
3959 		for (n = groupitem[groupdepth] + 1; n < curitem; n++)
3960 		    if (item[n].type == Normal || item[n].type == Highlight)
3961 			break;
3962 		if (n == curitem)
3963 		{
3964 		    p = t;
3965 		    l = 0;
3966 		}
3967 	    }
3968 	    if (l > item[groupitem[groupdepth]].maxwid)
3969 	    {
3970 		/* truncate, remove n bytes of text at the start */
3971 #ifdef FEAT_MBYTE
3972 		if (has_mbyte)
3973 		{
3974 		    /* Find the first character that should be included. */
3975 		    n = 0;
3976 		    while (l >= item[groupitem[groupdepth]].maxwid)
3977 		    {
3978 			l -= ptr2cells(t + n);
3979 			n += (*mb_ptr2len)(t + n);
3980 		    }
3981 		}
3982 		else
3983 #endif
3984 		    n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1;
3985 
3986 		*t = '<';
3987 		mch_memmove(t + 1, t + n, (size_t)(p - (t + n)));
3988 		p = p - n + 1;
3989 #ifdef FEAT_MBYTE
3990 		/* Fill up space left over by half a double-wide char. */
3991 		while (++l < item[groupitem[groupdepth]].minwid)
3992 		    *p++ = fillchar;
3993 #endif
3994 
3995 		/* correct the start of the items for the truncation */
3996 		for (l = groupitem[groupdepth] + 1; l < curitem; l++)
3997 		{
3998 		    item[l].start -= n;
3999 		    if (item[l].start < t)
4000 			item[l].start = t;
4001 		}
4002 	    }
4003 	    else if (abs(item[groupitem[groupdepth]].minwid) > l)
4004 	    {
4005 		/* fill */
4006 		n = item[groupitem[groupdepth]].minwid;
4007 		if (n < 0)
4008 		{
4009 		    /* fill by appending characters */
4010 		    n = 0 - n;
4011 		    while (l++ < n && p + 1 < out + outlen)
4012 			*p++ = fillchar;
4013 		}
4014 		else
4015 		{
4016 		    /* fill by inserting characters */
4017 		    mch_memmove(t + n - l, t, (size_t)(p - t));
4018 		    l = n - l;
4019 		    if (p + l >= out + outlen)
4020 			l = (long)((out + outlen) - p - 1);
4021 		    p += l;
4022 		    for (n = groupitem[groupdepth] + 1; n < curitem; n++)
4023 			item[n].start += l;
4024 		    for ( ; l > 0; l--)
4025 			*t++ = fillchar;
4026 		}
4027 	    }
4028 	    continue;
4029 	}
4030 	minwid = 0;
4031 	maxwid = 9999;
4032 	zeropad = FALSE;
4033 	l = 1;
4034 	if (*s == '0')
4035 	{
4036 	    s++;
4037 	    zeropad = TRUE;
4038 	}
4039 	if (*s == '-')
4040 	{
4041 	    s++;
4042 	    l = -1;
4043 	}
4044 	if (VIM_ISDIGIT(*s))
4045 	{
4046 	    minwid = (int)getdigits(&s);
4047 	    if (minwid < 0)	/* overflow */
4048 		minwid = 0;
4049 	}
4050 	if (*s == STL_USER_HL)
4051 	{
4052 	    item[curitem].type = Highlight;
4053 	    item[curitem].start = p;
4054 	    item[curitem].minwid = minwid > 9 ? 1 : minwid;
4055 	    s++;
4056 	    curitem++;
4057 	    continue;
4058 	}
4059 	if (*s == STL_TABPAGENR || *s == STL_TABCLOSENR)
4060 	{
4061 	    if (*s == STL_TABCLOSENR)
4062 	    {
4063 		if (minwid == 0)
4064 		{
4065 		    /* %X ends the close label, go back to the previously
4066 		     * define tab label nr. */
4067 		    for (n = curitem - 1; n >= 0; --n)
4068 			if (item[n].type == TabPage && item[n].minwid >= 0)
4069 			{
4070 			    minwid = item[n].minwid;
4071 			    break;
4072 			}
4073 		}
4074 		else
4075 		    /* close nrs are stored as negative values */
4076 		    minwid = - minwid;
4077 	    }
4078 	    item[curitem].type = TabPage;
4079 	    item[curitem].start = p;
4080 	    item[curitem].minwid = minwid;
4081 	    s++;
4082 	    curitem++;
4083 	    continue;
4084 	}
4085 	if (*s == '.')
4086 	{
4087 	    s++;
4088 	    if (VIM_ISDIGIT(*s))
4089 	    {
4090 		maxwid = (int)getdigits(&s);
4091 		if (maxwid <= 0)	/* overflow */
4092 		    maxwid = 50;
4093 	    }
4094 	}
4095 	minwid = (minwid > 50 ? 50 : minwid) * l;
4096 	if (*s == '(')
4097 	{
4098 	    groupitem[groupdepth++] = curitem;
4099 	    item[curitem].type = Group;
4100 	    item[curitem].start = p;
4101 	    item[curitem].minwid = minwid;
4102 	    item[curitem].maxwid = maxwid;
4103 	    s++;
4104 	    curitem++;
4105 	    continue;
4106 	}
4107 	if (vim_strchr(STL_ALL, *s) == NULL)
4108 	{
4109 	    s++;
4110 	    continue;
4111 	}
4112 	opt = *s++;
4113 
4114 	/* OK - now for the real work */
4115 	base = 'D';
4116 	itemisflag = FALSE;
4117 	fillable = TRUE;
4118 	num = -1;
4119 	str = NULL;
4120 	switch (opt)
4121 	{
4122 	case STL_FILEPATH:
4123 	case STL_FULLPATH:
4124 	case STL_FILENAME:
4125 	    fillable = FALSE;	/* don't change ' ' to fillchar */
4126 	    if (buf_spname(wp->w_buffer) != NULL)
4127 		vim_strncpy(NameBuff, buf_spname(wp->w_buffer), MAXPATHL - 1);
4128 	    else
4129 	    {
4130 		t = (opt == STL_FULLPATH) ? wp->w_buffer->b_ffname
4131 					  : wp->w_buffer->b_fname;
4132 		home_replace(wp->w_buffer, t, NameBuff, MAXPATHL, TRUE);
4133 	    }
4134 	    trans_characters(NameBuff, MAXPATHL);
4135 	    if (opt != STL_FILENAME)
4136 		str = NameBuff;
4137 	    else
4138 		str = gettail(NameBuff);
4139 	    break;
4140 
4141 	case STL_VIM_EXPR: /* '{' */
4142 	    itemisflag = TRUE;
4143 	    t = p;
4144 	    while (*s != '}' && *s != NUL && p + 1 < out + outlen)
4145 		*p++ = *s++;
4146 	    if (*s != '}')	/* missing '}' or out of space */
4147 		break;
4148 	    s++;
4149 	    *p = 0;
4150 	    p = t;
4151 
4152 #ifdef FEAT_EVAL
4153 	    vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum);
4154 	    set_internal_string_var((char_u *)"actual_curbuf", tmp);
4155 
4156 	    o_curbuf = curbuf;
4157 	    o_curwin = curwin;
4158 	    curwin = wp;
4159 	    curbuf = wp->w_buffer;
4160 
4161 	    str = eval_to_string_safe(p, &t, use_sandbox);
4162 
4163 	    curwin = o_curwin;
4164 	    curbuf = o_curbuf;
4165 	    do_unlet((char_u *)"g:actual_curbuf", TRUE);
4166 
4167 	    if (str != NULL && *str != 0)
4168 	    {
4169 		if (*skipdigits(str) == NUL)
4170 		{
4171 		    num = atoi((char *)str);
4172 		    vim_free(str);
4173 		    str = NULL;
4174 		    itemisflag = FALSE;
4175 		}
4176 	    }
4177 #endif
4178 	    break;
4179 
4180 	case STL_LINE:
4181 	    num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY)
4182 		  ? 0L : (long)(wp->w_cursor.lnum);
4183 	    break;
4184 
4185 	case STL_NUMLINES:
4186 	    num = wp->w_buffer->b_ml.ml_line_count;
4187 	    break;
4188 
4189 	case STL_COLUMN:
4190 	    num = !(State & INSERT) && empty_line
4191 		  ? 0 : (int)wp->w_cursor.col + 1;
4192 	    break;
4193 
4194 	case STL_VIRTCOL:
4195 	case STL_VIRTCOL_ALT:
4196 	    /* In list mode virtcol needs to be recomputed */
4197 	    virtcol = wp->w_virtcol;
4198 	    if (wp->w_p_list && lcs_tab1 == NUL)
4199 	    {
4200 		wp->w_p_list = FALSE;
4201 		getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
4202 		wp->w_p_list = TRUE;
4203 	    }
4204 	    ++virtcol;
4205 	    /* Don't display %V if it's the same as %c. */
4206 	    if (opt == STL_VIRTCOL_ALT
4207 		    && (virtcol == (colnr_T)(!(State & INSERT) && empty_line
4208 			    ? 0 : (int)wp->w_cursor.col + 1)))
4209 		break;
4210 	    num = (long)virtcol;
4211 	    break;
4212 
4213 	case STL_PERCENTAGE:
4214 	    num = (int)(((long)wp->w_cursor.lnum * 100L) /
4215 			(long)wp->w_buffer->b_ml.ml_line_count);
4216 	    break;
4217 
4218 	case STL_ALTPERCENT:
4219 	    str = tmp;
4220 	    get_rel_pos(wp, str, TMPLEN);
4221 	    break;
4222 
4223 	case STL_ARGLISTSTAT:
4224 	    fillable = FALSE;
4225 	    tmp[0] = 0;
4226 	    if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE))
4227 		str = tmp;
4228 	    break;
4229 
4230 	case STL_KEYMAP:
4231 	    fillable = FALSE;
4232 	    if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN))
4233 		str = tmp;
4234 	    break;
4235 	case STL_PAGENUM:
4236 #if defined(FEAT_PRINTER) || defined(FEAT_GUI_TABLINE)
4237 	    num = printer_page_num;
4238 #else
4239 	    num = 0;
4240 #endif
4241 	    break;
4242 
4243 	case STL_BUFNO:
4244 	    num = wp->w_buffer->b_fnum;
4245 	    break;
4246 
4247 	case STL_OFFSET_X:
4248 	    base = 'X';
4249 	case STL_OFFSET:
4250 #ifdef FEAT_BYTEOFF
4251 	    l = ml_find_line_or_offset(wp->w_buffer, wp->w_cursor.lnum, NULL);
4252 	    num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ?
4253 		  0L : l + 1 + (!(State & INSERT) && empty_line ?
4254 				0 : (int)wp->w_cursor.col);
4255 #endif
4256 	    break;
4257 
4258 	case STL_BYTEVAL_X:
4259 	    base = 'X';
4260 	case STL_BYTEVAL:
4261 	    num = byteval;
4262 	    if (num == NL)
4263 		num = 0;
4264 	    else if (num == CAR && get_fileformat(wp->w_buffer) == EOL_MAC)
4265 		num = NL;
4266 	    break;
4267 
4268 	case STL_ROFLAG:
4269 	case STL_ROFLAG_ALT:
4270 	    itemisflag = TRUE;
4271 	    if (wp->w_buffer->b_p_ro)
4272 		str = (char_u *)((opt == STL_ROFLAG_ALT) ? ",RO" : _("[RO]"));
4273 	    break;
4274 
4275 	case STL_HELPFLAG:
4276 	case STL_HELPFLAG_ALT:
4277 	    itemisflag = TRUE;
4278 	    if (wp->w_buffer->b_help)
4279 		str = (char_u *)((opt == STL_HELPFLAG_ALT) ? ",HLP"
4280 							       : _("[Help]"));
4281 	    break;
4282 
4283 #ifdef FEAT_AUTOCMD
4284 	case STL_FILETYPE:
4285 	    if (*wp->w_buffer->b_p_ft != NUL
4286 		    && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 3)
4287 	    {
4288 		vim_snprintf((char *)tmp, sizeof(tmp), "[%s]",
4289 							wp->w_buffer->b_p_ft);
4290 		str = tmp;
4291 	    }
4292 	    break;
4293 
4294 	case STL_FILETYPE_ALT:
4295 	    itemisflag = TRUE;
4296 	    if (*wp->w_buffer->b_p_ft != NUL
4297 		    && STRLEN(wp->w_buffer->b_p_ft) < TMPLEN - 2)
4298 	    {
4299 		vim_snprintf((char *)tmp, sizeof(tmp), ",%s",
4300 							wp->w_buffer->b_p_ft);
4301 		for (t = tmp; *t != 0; t++)
4302 		    *t = TOUPPER_LOC(*t);
4303 		str = tmp;
4304 	    }
4305 	    break;
4306 #endif
4307 
4308 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
4309 	case STL_PREVIEWFLAG:
4310 	case STL_PREVIEWFLAG_ALT:
4311 	    itemisflag = TRUE;
4312 	    if (wp->w_p_pvw)
4313 		str = (char_u *)((opt == STL_PREVIEWFLAG_ALT) ? ",PRV"
4314 							    : _("[Preview]"));
4315 	    break;
4316 
4317 	case STL_QUICKFIX:
4318 	    if (bt_quickfix(wp->w_buffer))
4319 		str = (char_u *)(wp->w_llist_ref
4320 			    ? _(msg_loclist)
4321 			    : _(msg_qflist));
4322 	    break;
4323 #endif
4324 
4325 	case STL_MODIFIED:
4326 	case STL_MODIFIED_ALT:
4327 	    itemisflag = TRUE;
4328 	    switch ((opt == STL_MODIFIED_ALT)
4329 		    + bufIsChanged(wp->w_buffer) * 2
4330 		    + (!wp->w_buffer->b_p_ma) * 4)
4331 	    {
4332 		case 2: str = (char_u *)"[+]"; break;
4333 		case 3: str = (char_u *)",+"; break;
4334 		case 4: str = (char_u *)"[-]"; break;
4335 		case 5: str = (char_u *)",-"; break;
4336 		case 6: str = (char_u *)"[+-]"; break;
4337 		case 7: str = (char_u *)",+-"; break;
4338 	    }
4339 	    break;
4340 
4341 	case STL_HIGHLIGHT:
4342 	    t = s;
4343 	    while (*s != '#' && *s != NUL)
4344 		++s;
4345 	    if (*s == '#')
4346 	    {
4347 		item[curitem].type = Highlight;
4348 		item[curitem].start = p;
4349 		item[curitem].minwid = -syn_namen2id(t, (int)(s - t));
4350 		curitem++;
4351 	    }
4352 	    if (*s != NUL)
4353 		++s;
4354 	    continue;
4355 	}
4356 
4357 	item[curitem].start = p;
4358 	item[curitem].type = Normal;
4359 	if (str != NULL && *str)
4360 	{
4361 	    t = str;
4362 	    if (itemisflag)
4363 	    {
4364 		if ((t[0] && t[1])
4365 			&& ((!prevchar_isitem && *t == ',')
4366 			      || (prevchar_isflag && *t == ' ')))
4367 		    t++;
4368 		prevchar_isflag = TRUE;
4369 	    }
4370 	    l = vim_strsize(t);
4371 	    if (l > 0)
4372 		prevchar_isitem = TRUE;
4373 	    if (l > maxwid)
4374 	    {
4375 		while (l >= maxwid)
4376 #ifdef FEAT_MBYTE
4377 		    if (has_mbyte)
4378 		    {
4379 			l -= ptr2cells(t);
4380 			t += (*mb_ptr2len)(t);
4381 		    }
4382 		    else
4383 #endif
4384 			l -= byte2cells(*t++);
4385 		if (p + 1 >= out + outlen)
4386 		    break;
4387 		*p++ = '<';
4388 	    }
4389 	    if (minwid > 0)
4390 	    {
4391 		for (; l < minwid && p + 1 < out + outlen; l++)
4392 		{
4393 		    /* Don't put a "-" in front of a digit. */
4394 		    if (l + 1 == minwid && fillchar == '-' && VIM_ISDIGIT(*t))
4395 			*p++ = ' ';
4396 		    else
4397 			*p++ = fillchar;
4398 		}
4399 		minwid = 0;
4400 	    }
4401 	    else
4402 		minwid *= -1;
4403 	    while (*t && p + 1 < out + outlen)
4404 	    {
4405 		*p++ = *t++;
4406 		/* Change a space by fillchar, unless fillchar is '-' and a
4407 		 * digit follows. */
4408 		if (fillable && p[-1] == ' '
4409 				     && (!VIM_ISDIGIT(*t) || fillchar != '-'))
4410 		    p[-1] = fillchar;
4411 	    }
4412 	    for (; l < minwid && p + 1 < out + outlen; l++)
4413 		*p++ = fillchar;
4414 	}
4415 	else if (num >= 0)
4416 	{
4417 	    int nbase = (base == 'D' ? 10 : (base == 'O' ? 8 : 16));
4418 	    char_u nstr[20];
4419 
4420 	    if (p + 20 >= out + outlen)
4421 		break;		/* not sufficient space */
4422 	    prevchar_isitem = TRUE;
4423 	    t = nstr;
4424 	    if (opt == STL_VIRTCOL_ALT)
4425 	    {
4426 		*t++ = '-';
4427 		minwid--;
4428 	    }
4429 	    *t++ = '%';
4430 	    if (zeropad)
4431 		*t++ = '0';
4432 	    *t++ = '*';
4433 	    *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd');
4434 	    *t = 0;
4435 
4436 	    for (n = num, l = 1; n >= nbase; n /= nbase)
4437 		l++;
4438 	    if (opt == STL_VIRTCOL_ALT)
4439 		l++;
4440 	    if (l > maxwid)
4441 	    {
4442 		l += 2;
4443 		n = l - maxwid;
4444 		while (l-- > maxwid)
4445 		    num /= nbase;
4446 		*t++ = '>';
4447 		*t++ = '%';
4448 		*t = t[-3];
4449 		*++t = 0;
4450 		vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4451 								   0, num, n);
4452 	    }
4453 	    else
4454 		vim_snprintf((char *)p, outlen - (p - out), (char *)nstr,
4455 								 minwid, num);
4456 	    p += STRLEN(p);
4457 	}
4458 	else
4459 	    item[curitem].type = Empty;
4460 
4461 	if (opt == STL_VIM_EXPR)
4462 	    vim_free(str);
4463 
4464 	if (num >= 0 || (!itemisflag && str && *str))
4465 	    prevchar_isflag = FALSE;	    /* Item not NULL, but not a flag */
4466 	curitem++;
4467     }
4468     *p = NUL;
4469     itemcnt = curitem;
4470 
4471 #ifdef FEAT_EVAL
4472     if (usefmt != fmt)
4473 	vim_free(usefmt);
4474 #endif
4475 
4476     width = vim_strsize(out);
4477     if (maxwidth > 0 && width > maxwidth)
4478     {
4479 	/* Result is too long, must truncate somewhere. */
4480 	l = 0;
4481 	if (itemcnt == 0)
4482 	    s = out;
4483 	else
4484 	{
4485 	    for ( ; l < itemcnt; l++)
4486 		if (item[l].type == Trunc)
4487 		{
4488 		    /* Truncate at %< item. */
4489 		    s = item[l].start;
4490 		    break;
4491 		}
4492 	    if (l == itemcnt)
4493 	    {
4494 		/* No %< item, truncate first item. */
4495 		s = item[0].start;
4496 		l = 0;
4497 	    }
4498 	}
4499 
4500 	if (width - vim_strsize(s) >= maxwidth)
4501 	{
4502 	    /* Truncation mark is beyond max length */
4503 #ifdef FEAT_MBYTE
4504 	    if (has_mbyte)
4505 	    {
4506 		s = out;
4507 		width = 0;
4508 		for (;;)
4509 		{
4510 		    width += ptr2cells(s);
4511 		    if (width >= maxwidth)
4512 			break;
4513 		    s += (*mb_ptr2len)(s);
4514 		}
4515 		/* Fill up for half a double-wide character. */
4516 		while (++width < maxwidth)
4517 		    *s++ = fillchar;
4518 	    }
4519 	    else
4520 #endif
4521 		s = out + maxwidth - 1;
4522 	    for (l = 0; l < itemcnt; l++)
4523 		if (item[l].start > s)
4524 		    break;
4525 	    itemcnt = l;
4526 	    *s++ = '>';
4527 	    *s = 0;
4528 	}
4529 	else
4530 	{
4531 #ifdef FEAT_MBYTE
4532 	    if (has_mbyte)
4533 	    {
4534 		n = 0;
4535 		while (width >= maxwidth)
4536 		{
4537 		    width -= ptr2cells(s + n);
4538 		    n += (*mb_ptr2len)(s + n);
4539 		}
4540 	    }
4541 	    else
4542 #endif
4543 		n = width - maxwidth + 1;
4544 	    p = s + n;
4545 	    STRMOVE(s + 1, p);
4546 	    *s = '<';
4547 
4548 	    /* Fill up for half a double-wide character. */
4549 	    while (++width < maxwidth)
4550 	    {
4551 		s = s + STRLEN(s);
4552 		*s++ = fillchar;
4553 		*s = NUL;
4554 	    }
4555 
4556 	    --n;	/* count the '<' */
4557 	    for (; l < itemcnt; l++)
4558 	    {
4559 		if (item[l].start - n >= s)
4560 		    item[l].start -= n;
4561 		else
4562 		    item[l].start = s;
4563 	    }
4564 	}
4565 	width = maxwidth;
4566     }
4567     else if (width < maxwidth && STRLEN(out) + maxwidth - width + 1 < outlen)
4568     {
4569 	/* Apply STL_MIDDLE if any */
4570 	for (l = 0; l < itemcnt; l++)
4571 	    if (item[l].type == Middle)
4572 		break;
4573 	if (l < itemcnt)
4574 	{
4575 	    p = item[l].start + maxwidth - width;
4576 	    STRMOVE(p, item[l].start);
4577 	    for (s = item[l].start; s < p; s++)
4578 		*s = fillchar;
4579 	    for (l++; l < itemcnt; l++)
4580 		item[l].start += maxwidth - width;
4581 	    width = maxwidth;
4582 	}
4583     }
4584 
4585     /* Store the info about highlighting. */
4586     if (hltab != NULL)
4587     {
4588 	sp = hltab;
4589 	for (l = 0; l < itemcnt; l++)
4590 	{
4591 	    if (item[l].type == Highlight)
4592 	    {
4593 		sp->start = item[l].start;
4594 		sp->userhl = item[l].minwid;
4595 		sp++;
4596 	    }
4597 	}
4598 	sp->start = NULL;
4599 	sp->userhl = 0;
4600     }
4601 
4602     /* Store the info about tab pages labels. */
4603     if (tabtab != NULL)
4604     {
4605 	sp = tabtab;
4606 	for (l = 0; l < itemcnt; l++)
4607 	{
4608 	    if (item[l].type == TabPage)
4609 	    {
4610 		sp->start = item[l].start;
4611 		sp->userhl = item[l].minwid;
4612 		sp++;
4613 	    }
4614 	}
4615 	sp->start = NULL;
4616 	sp->userhl = 0;
4617     }
4618 
4619     return width;
4620 }
4621 #endif /* FEAT_STL_OPT */
4622 
4623 #if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
4624 	    || defined(FEAT_GUI_TABLINE) || defined(PROTO)
4625 /*
4626  * Get relative cursor position in window into "buf[buflen]", in the form 99%,
4627  * using "Top", "Bot" or "All" when appropriate.
4628  */
4629     void
4630 get_rel_pos(
4631     win_T	*wp,
4632     char_u	*buf,
4633     int		buflen)
4634 {
4635     long	above; /* number of lines above window */
4636     long	below; /* number of lines below window */
4637 
4638     if (buflen < 3) /* need at least 3 chars for writing */
4639 	return;
4640     above = wp->w_topline - 1;
4641 #ifdef FEAT_DIFF
4642     above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
4643     if (wp->w_topline == 1 && wp->w_topfill >= 1)
4644 	above = 0;  /* All buffer lines are displayed and there is an
4645 		     * indication of filler lines, that can be considered
4646 		     * seeing all lines. */
4647 #endif
4648     below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1;
4649     if (below <= 0)
4650 	vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")),
4651 							(size_t)(buflen - 1));
4652     else if (above <= 0)
4653 	vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1));
4654     else
4655 	vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L
4656 				    ? (int)(above / ((above + below) / 100L))
4657 				    : (int)(above * 100L / (above + below)));
4658 }
4659 #endif
4660 
4661 /*
4662  * Append (file 2 of 8) to "buf[buflen]", if editing more than one file.
4663  * Return TRUE if it was appended.
4664  */
4665     static int
4666 append_arg_number(
4667     win_T	*wp,
4668     char_u	*buf,
4669     int		buflen,
4670     int		add_file)	/* Add "file" before the arg number */
4671 {
4672     char_u	*p;
4673 
4674     if (ARGCOUNT <= 1)		/* nothing to do */
4675 	return FALSE;
4676 
4677     p = buf + STRLEN(buf);	/* go to the end of the buffer */
4678     if (p - buf + 35 >= buflen)	/* getting too long */
4679 	return FALSE;
4680     *p++ = ' ';
4681     *p++ = '(';
4682     if (add_file)
4683     {
4684 	STRCPY(p, "file ");
4685 	p += 5;
4686     }
4687     vim_snprintf((char *)p, (size_t)(buflen - (p - buf)),
4688 		wp->w_arg_idx_invalid ? "(%d) of %d)"
4689 				  : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT);
4690     return TRUE;
4691 }
4692 
4693 /*
4694  * If fname is not a full path, make it a full path.
4695  * Returns pointer to allocated memory (NULL for failure).
4696  */
4697     char_u  *
4698 fix_fname(char_u  *fname)
4699 {
4700     /*
4701      * Force expanding the path always for Unix, because symbolic links may
4702      * mess up the full path name, even though it starts with a '/'.
4703      * Also expand when there is ".." in the file name, try to remove it,
4704      * because "c:/src/../README" is equal to "c:/README".
4705      * Similarly "c:/src//file" is equal to "c:/src/file".
4706      * For MS-Windows also expand names like "longna~1" to "longname".
4707      */
4708 #ifdef UNIX
4709     return FullName_save(fname, TRUE);
4710 #else
4711     if (!vim_isAbsName(fname)
4712 	    || strstr((char *)fname, "..") != NULL
4713 	    || strstr((char *)fname, "//") != NULL
4714 # ifdef BACKSLASH_IN_FILENAME
4715 	    || strstr((char *)fname, "\\\\") != NULL
4716 # endif
4717 # if defined(MSWIN)
4718 	    || vim_strchr(fname, '~') != NULL
4719 # endif
4720 	    )
4721 	return FullName_save(fname, FALSE);
4722 
4723     fname = vim_strsave(fname);
4724 
4725 # ifdef USE_FNAME_CASE
4726 #  ifdef USE_LONG_FNAME
4727     if (USE_LONG_FNAME)
4728 #  endif
4729     {
4730 	if (fname != NULL)
4731 	    fname_case(fname, 0);	/* set correct case for file name */
4732     }
4733 # endif
4734 
4735     return fname;
4736 #endif
4737 }
4738 
4739 /*
4740  * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL.
4741  * "ffname" becomes a pointer to allocated memory (or NULL).
4742  */
4743     void
4744 fname_expand(
4745     buf_T	*buf UNUSED,
4746     char_u	**ffname,
4747     char_u	**sfname)
4748 {
4749     if (*ffname == NULL)	/* if no file name given, nothing to do */
4750 	return;
4751     if (*sfname == NULL)	/* if no short file name given, use ffname */
4752 	*sfname = *ffname;
4753     *ffname = fix_fname(*ffname);   /* expand to full path */
4754 
4755 #ifdef FEAT_SHORTCUT
4756     if (!buf->b_p_bin)
4757     {
4758 	char_u  *rfname;
4759 
4760 	/* If the file name is a shortcut file, use the file it links to. */
4761 	rfname = mch_resolve_shortcut(*ffname);
4762 	if (rfname != NULL)
4763 	{
4764 	    vim_free(*ffname);
4765 	    *ffname = rfname;
4766 	    *sfname = rfname;
4767 	}
4768     }
4769 #endif
4770 }
4771 
4772 /*
4773  * Get the file name for an argument list entry.
4774  */
4775     char_u *
4776 alist_name(aentry_T *aep)
4777 {
4778     buf_T	*bp;
4779 
4780     /* Use the name from the associated buffer if it exists. */
4781     bp = buflist_findnr(aep->ae_fnum);
4782     if (bp == NULL || bp->b_fname == NULL)
4783 	return aep->ae_fname;
4784     return bp->b_fname;
4785 }
4786 
4787 #if defined(FEAT_WINDOWS) || defined(PROTO)
4788 /*
4789  * do_arg_all(): Open up to 'count' windows, one for each argument.
4790  */
4791     void
4792 do_arg_all(
4793     int	count,
4794     int	forceit,		/* hide buffers in current windows */
4795     int keep_tabs)		/* keep current tabs, for ":tab drop file" */
4796 {
4797     int		i;
4798     win_T	*wp, *wpnext;
4799     char_u	*opened;	/* Array of weight for which args are open:
4800 				 *  0: not opened
4801 				 *  1: opened in other tab
4802 				 *  2: opened in curtab
4803 				 *  3: opened in curtab and curwin
4804 				 */
4805     int		opened_len;	/* length of opened[] */
4806     int		use_firstwin = FALSE;	/* use first window for arglist */
4807     int		split_ret = OK;
4808     int		p_ea_save;
4809     alist_T	*alist;		/* argument list to be used */
4810     buf_T	*buf;
4811     tabpage_T	*tpnext;
4812     int		had_tab = cmdmod.tab;
4813     win_T	*old_curwin, *last_curwin;
4814     tabpage_T	*old_curtab, *last_curtab;
4815     win_T	*new_curwin = NULL;
4816     tabpage_T	*new_curtab = NULL;
4817 
4818     if (ARGCOUNT <= 0)
4819     {
4820 	/* Don't give an error message.  We don't want it when the ":all"
4821 	 * command is in the .vimrc. */
4822 	return;
4823     }
4824     setpcmark();
4825 
4826     opened_len = ARGCOUNT;
4827     opened = alloc_clear((unsigned)opened_len);
4828     if (opened == NULL)
4829 	return;
4830 
4831     /* Autocommands may do anything to the argument list.  Make sure it's not
4832      * freed while we are working here by "locking" it.  We still have to
4833      * watch out for its size to be changed. */
4834     alist = curwin->w_alist;
4835     ++alist->al_refcount;
4836 
4837     old_curwin = curwin;
4838     old_curtab = curtab;
4839 
4840 # ifdef FEAT_GUI
4841     need_mouse_correct = TRUE;
4842 # endif
4843 
4844     /*
4845      * Try closing all windows that are not in the argument list.
4846      * Also close windows that are not full width;
4847      * When 'hidden' or "forceit" set the buffer becomes hidden.
4848      * Windows that have a changed buffer and can't be hidden won't be closed.
4849      * When the ":tab" modifier was used do this for all tab pages.
4850      */
4851     if (had_tab > 0)
4852 	goto_tabpage_tp(first_tabpage, TRUE, TRUE);
4853     for (;;)
4854     {
4855 	tpnext = curtab->tp_next;
4856 	for (wp = firstwin; wp != NULL; wp = wpnext)
4857 	{
4858 	    wpnext = wp->w_next;
4859 	    buf = wp->w_buffer;
4860 	    if (buf->b_ffname == NULL
4861 		    || (!keep_tabs && (buf->b_nwindows > 1
4862 			    || wp->w_width != Columns)))
4863 		i = opened_len;
4864 	    else
4865 	    {
4866 		/* check if the buffer in this window is in the arglist */
4867 		for (i = 0; i < opened_len; ++i)
4868 		{
4869 		    if (i < alist->al_ga.ga_len
4870 			    && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum
4871 				|| fullpathcmp(alist_name(&AARGLIST(alist)[i]),
4872 					      buf->b_ffname, TRUE) & FPC_SAME))
4873 		    {
4874 			int weight = 1;
4875 
4876 			if (old_curtab == curtab)
4877 			{
4878 			    ++weight;
4879 			    if (old_curwin == wp)
4880 				++weight;
4881 			}
4882 
4883 			if (weight > (int)opened[i])
4884 			{
4885 			    opened[i] = (char_u)weight;
4886 			    if (i == 0)
4887 			    {
4888 				if (new_curwin != NULL)
4889 				    new_curwin->w_arg_idx = opened_len;
4890 				new_curwin = wp;
4891 				new_curtab = curtab;
4892 			    }
4893 			}
4894 			else if (keep_tabs)
4895 			    i = opened_len;
4896 
4897 			if (wp->w_alist != alist)
4898 			{
4899 			    /* Use the current argument list for all windows
4900 			     * containing a file from it. */
4901 			    alist_unlink(wp->w_alist);
4902 			    wp->w_alist = alist;
4903 			    ++wp->w_alist->al_refcount;
4904 			}
4905 			break;
4906 		    }
4907 		}
4908 	    }
4909 	    wp->w_arg_idx = i;
4910 
4911 	    if (i == opened_len && !keep_tabs)/* close this window */
4912 	    {
4913 		if (P_HID(buf) || forceit || buf->b_nwindows > 1
4914 							|| !bufIsChanged(buf))
4915 		{
4916 		    /* If the buffer was changed, and we would like to hide it,
4917 		     * try autowriting. */
4918 		    if (!P_HID(buf) && buf->b_nwindows <= 1
4919 							 && bufIsChanged(buf))
4920 		    {
4921 #ifdef FEAT_AUTOCMD
4922 			bufref_T    bufref;
4923 
4924 			set_bufref(&bufref, buf);
4925 #endif
4926 			(void)autowrite(buf, FALSE);
4927 #ifdef FEAT_AUTOCMD
4928 			/* check if autocommands removed the window */
4929 			if (!win_valid(wp) || !bufref_valid(&bufref))
4930 			{
4931 			    wpnext = firstwin;	/* start all over... */
4932 			    continue;
4933 			}
4934 #endif
4935 		    }
4936 #ifdef FEAT_WINDOWS
4937 		    /* don't close last window */
4938 		    if (ONE_WINDOW
4939 			    && (first_tabpage->tp_next == NULL || !had_tab))
4940 #endif
4941 			use_firstwin = TRUE;
4942 #ifdef FEAT_WINDOWS
4943 		    else
4944 		    {
4945 			win_close(wp, !P_HID(buf) && !bufIsChanged(buf));
4946 # ifdef FEAT_AUTOCMD
4947 			/* check if autocommands removed the next window */
4948 			if (!win_valid(wpnext))
4949 			    wpnext = firstwin;	/* start all over... */
4950 # endif
4951 		    }
4952 #endif
4953 		}
4954 	    }
4955 	}
4956 
4957 	/* Without the ":tab" modifier only do the current tab page. */
4958 	if (had_tab == 0 || tpnext == NULL)
4959 	    break;
4960 
4961 # ifdef FEAT_AUTOCMD
4962 	/* check if autocommands removed the next tab page */
4963 	if (!valid_tabpage(tpnext))
4964 	    tpnext = first_tabpage;	/* start all over...*/
4965 # endif
4966 	goto_tabpage_tp(tpnext, TRUE, TRUE);
4967     }
4968 
4969     /*
4970      * Open a window for files in the argument list that don't have one.
4971      * ARGCOUNT may change while doing this, because of autocommands.
4972      */
4973     if (count > opened_len || count <= 0)
4974 	count = opened_len;
4975 
4976 #ifdef FEAT_AUTOCMD
4977     /* Don't execute Win/Buf Enter/Leave autocommands here. */
4978     ++autocmd_no_enter;
4979     ++autocmd_no_leave;
4980 #endif
4981     last_curwin = curwin;
4982     last_curtab = curtab;
4983     win_enter(lastwin, FALSE);
4984 #ifdef FEAT_WINDOWS
4985     /* ":drop all" should re-use an empty window to avoid "--remote-tab"
4986      * leaving an empty tab page when executed locally. */
4987     if (keep_tabs && bufempty() && curbuf->b_nwindows == 1
4988 			    && curbuf->b_ffname == NULL && !curbuf->b_changed)
4989 	use_firstwin = TRUE;
4990 #endif
4991 
4992     for (i = 0; i < count && i < opened_len && !got_int; ++i)
4993     {
4994 	if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1)
4995 	    arg_had_last = TRUE;
4996 	if (opened[i] > 0)
4997 	{
4998 	    /* Move the already present window to below the current window */
4999 	    if (curwin->w_arg_idx != i)
5000 	    {
5001 		for (wpnext = firstwin; wpnext != NULL; wpnext = wpnext->w_next)
5002 		{
5003 		    if (wpnext->w_arg_idx == i)
5004 		    {
5005 			if (keep_tabs)
5006 			{
5007 			    new_curwin = wpnext;
5008 			    new_curtab = curtab;
5009 			}
5010 			else
5011 			    win_move_after(wpnext, curwin);
5012 			break;
5013 		    }
5014 		}
5015 	    }
5016 	}
5017 	else if (split_ret == OK)
5018 	{
5019 	    if (!use_firstwin)		/* split current window */
5020 	    {
5021 		p_ea_save = p_ea;
5022 		p_ea = TRUE;		/* use space from all windows */
5023 		split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5024 		p_ea = p_ea_save;
5025 		if (split_ret == FAIL)
5026 		    continue;
5027 	    }
5028 #ifdef FEAT_AUTOCMD
5029 	    else    /* first window: do autocmd for leaving this buffer */
5030 		--autocmd_no_leave;
5031 #endif
5032 
5033 	    /*
5034 	     * edit file "i"
5035 	     */
5036 	    curwin->w_arg_idx = i;
5037 	    if (i == 0)
5038 	    {
5039 		new_curwin = curwin;
5040 		new_curtab = curtab;
5041 	    }
5042 	    (void)do_ecmd(0, alist_name(&AARGLIST(alist)[i]), NULL, NULL,
5043 		      ECMD_ONE,
5044 		      ((P_HID(curwin->w_buffer)
5045 			   || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0)
5046 						       + ECMD_OLDBUF, curwin);
5047 #ifdef FEAT_AUTOCMD
5048 	    if (use_firstwin)
5049 		++autocmd_no_leave;
5050 #endif
5051 	    use_firstwin = FALSE;
5052 	}
5053 	ui_breakcheck();
5054 
5055 	/* When ":tab" was used open a new tab for a new window repeatedly. */
5056 	if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5057 	    cmdmod.tab = 9999;
5058     }
5059 
5060     /* Remove the "lock" on the argument list. */
5061     alist_unlink(alist);
5062 
5063 #ifdef FEAT_AUTOCMD
5064     --autocmd_no_enter;
5065 #endif
5066     /* restore last referenced tabpage's curwin */
5067     if (last_curtab != new_curtab)
5068     {
5069 	if (valid_tabpage(last_curtab))
5070 	    goto_tabpage_tp(last_curtab, TRUE, TRUE);
5071 	if (win_valid(last_curwin))
5072 	    win_enter(last_curwin, FALSE);
5073     }
5074     /* to window with first arg */
5075     if (valid_tabpage(new_curtab))
5076 	goto_tabpage_tp(new_curtab, TRUE, TRUE);
5077     if (win_valid(new_curwin))
5078 	win_enter(new_curwin, FALSE);
5079 
5080 #ifdef FEAT_AUTOCMD
5081     --autocmd_no_leave;
5082 #endif
5083     vim_free(opened);
5084 }
5085 
5086 # if defined(FEAT_LISTCMDS) || defined(PROTO)
5087 /*
5088  * Open a window for a number of buffers.
5089  */
5090     void
5091 ex_buffer_all(exarg_T *eap)
5092 {
5093     buf_T	*buf;
5094     win_T	*wp, *wpnext;
5095     int		split_ret = OK;
5096     int		p_ea_save;
5097     int		open_wins = 0;
5098     int		r;
5099     int		count;		/* Maximum number of windows to open. */
5100     int		all;		/* When TRUE also load inactive buffers. */
5101 #ifdef FEAT_WINDOWS
5102     int		had_tab = cmdmod.tab;
5103     tabpage_T	*tpnext;
5104 #endif
5105 
5106     if (eap->addr_count == 0)	/* make as many windows as possible */
5107 	count = 9999;
5108     else
5109 	count = eap->line2;	/* make as many windows as specified */
5110     if (eap->cmdidx == CMD_unhide || eap->cmdidx == CMD_sunhide)
5111 	all = FALSE;
5112     else
5113 	all = TRUE;
5114 
5115     setpcmark();
5116 
5117 #ifdef FEAT_GUI
5118     need_mouse_correct = TRUE;
5119 #endif
5120 
5121     /*
5122      * Close superfluous windows (two windows for the same buffer).
5123      * Also close windows that are not full-width.
5124      */
5125 #ifdef FEAT_WINDOWS
5126     if (had_tab > 0)
5127 	goto_tabpage_tp(first_tabpage, TRUE, TRUE);
5128     for (;;)
5129     {
5130 #endif
5131 	tpnext = curtab->tp_next;
5132 	for (wp = firstwin; wp != NULL; wp = wpnext)
5133 	{
5134 	    wpnext = wp->w_next;
5135 	    if ((wp->w_buffer->b_nwindows > 1
5136 #ifdef FEAT_WINDOWS
5137 		    || ((cmdmod.split & WSP_VERT)
5138 			? wp->w_height + wp->w_status_height < Rows - p_ch
5139 							    - tabline_height()
5140 			: wp->w_width != Columns)
5141 		    || (had_tab > 0 && wp != firstwin)
5142 #endif
5143 		    ) && !ONE_WINDOW
5144 #ifdef FEAT_AUTOCMD
5145 		    && !(wp->w_closing || wp->w_buffer->b_locked > 0)
5146 #endif
5147 		    )
5148 	    {
5149 		win_close(wp, FALSE);
5150 #ifdef FEAT_AUTOCMD
5151 		wpnext = firstwin;	/* just in case an autocommand does
5152 					   something strange with windows */
5153 		tpnext = first_tabpage;	/* start all over...*/
5154 		open_wins = 0;
5155 #endif
5156 	    }
5157 	    else
5158 		++open_wins;
5159 	}
5160 
5161 #ifdef FEAT_WINDOWS
5162 	/* Without the ":tab" modifier only do the current tab page. */
5163 	if (had_tab == 0 || tpnext == NULL)
5164 	    break;
5165 	goto_tabpage_tp(tpnext, TRUE, TRUE);
5166     }
5167 #endif
5168 
5169     /*
5170      * Go through the buffer list.  When a buffer doesn't have a window yet,
5171      * open one.  Otherwise move the window to the right position.
5172      * Watch out for autocommands that delete buffers or windows!
5173      */
5174 #ifdef FEAT_AUTOCMD
5175     /* Don't execute Win/Buf Enter/Leave autocommands here. */
5176     ++autocmd_no_enter;
5177 #endif
5178     win_enter(lastwin, FALSE);
5179 #ifdef FEAT_AUTOCMD
5180     ++autocmd_no_leave;
5181 #endif
5182     for (buf = firstbuf; buf != NULL && open_wins < count; buf = buf->b_next)
5183     {
5184 	/* Check if this buffer needs a window */
5185 	if ((!all && buf->b_ml.ml_mfp == NULL) || !buf->b_p_bl)
5186 	    continue;
5187 
5188 #ifdef FEAT_WINDOWS
5189 	if (had_tab != 0)
5190 	{
5191 	    /* With the ":tab" modifier don't move the window. */
5192 	    if (buf->b_nwindows > 0)
5193 		wp = lastwin;	    /* buffer has a window, skip it */
5194 	    else
5195 		wp = NULL;
5196 	}
5197 	else
5198 #endif
5199 	{
5200 	    /* Check if this buffer already has a window */
5201 	    FOR_ALL_WINDOWS(wp)
5202 		if (wp->w_buffer == buf)
5203 		    break;
5204 	    /* If the buffer already has a window, move it */
5205 	    if (wp != NULL)
5206 		win_move_after(wp, curwin);
5207 	}
5208 
5209 	if (wp == NULL && split_ret == OK)
5210 	{
5211 #ifdef FEAT_AUTOCMD
5212 	    bufref_T	bufref;
5213 
5214 	    set_bufref(&bufref, buf);
5215 #endif
5216 	    /* Split the window and put the buffer in it */
5217 	    p_ea_save = p_ea;
5218 	    p_ea = TRUE;		/* use space from all windows */
5219 	    split_ret = win_split(0, WSP_ROOM | WSP_BELOW);
5220 	    ++open_wins;
5221 	    p_ea = p_ea_save;
5222 	    if (split_ret == FAIL)
5223 		continue;
5224 
5225 	    /* Open the buffer in this window. */
5226 #if defined(HAS_SWAP_EXISTS_ACTION)
5227 	    swap_exists_action = SEA_DIALOG;
5228 #endif
5229 	    set_curbuf(buf, DOBUF_GOTO);
5230 #ifdef FEAT_AUTOCMD
5231 	    if (!bufref_valid(&bufref))
5232 	    {
5233 		/* autocommands deleted the buffer!!! */
5234 #if defined(HAS_SWAP_EXISTS_ACTION)
5235 		swap_exists_action = SEA_NONE;
5236 # endif
5237 		break;
5238 	    }
5239 #endif
5240 #if defined(HAS_SWAP_EXISTS_ACTION)
5241 	    if (swap_exists_action == SEA_QUIT)
5242 	    {
5243 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5244 		cleanup_T   cs;
5245 
5246 		/* Reset the error/interrupt/exception state here so that
5247 		 * aborting() returns FALSE when closing a window. */
5248 		enter_cleanup(&cs);
5249 # endif
5250 
5251 		/* User selected Quit at ATTENTION prompt; close this window. */
5252 		win_close(curwin, TRUE);
5253 		--open_wins;
5254 		swap_exists_action = SEA_NONE;
5255 		swap_exists_did_quit = TRUE;
5256 
5257 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
5258 		/* Restore the error/interrupt/exception state if not
5259 		 * discarded by a new aborting error, interrupt, or uncaught
5260 		 * exception. */
5261 		leave_cleanup(&cs);
5262 # endif
5263 	    }
5264 	    else
5265 		handle_swap_exists(NULL);
5266 #endif
5267 	}
5268 
5269 	ui_breakcheck();
5270 	if (got_int)
5271 	{
5272 	    (void)vgetc();	/* only break the file loading, not the rest */
5273 	    break;
5274 	}
5275 #ifdef FEAT_EVAL
5276 	/* Autocommands deleted the buffer or aborted script processing!!! */
5277 	if (aborting())
5278 	    break;
5279 #endif
5280 #ifdef FEAT_WINDOWS
5281 	/* When ":tab" was used open a new tab for a new window repeatedly. */
5282 	if (had_tab > 0 && tabpage_index(NULL) <= p_tpm)
5283 	    cmdmod.tab = 9999;
5284 #endif
5285     }
5286 #ifdef FEAT_AUTOCMD
5287     --autocmd_no_enter;
5288 #endif
5289     win_enter(firstwin, FALSE);		/* back to first window */
5290 #ifdef FEAT_AUTOCMD
5291     --autocmd_no_leave;
5292 #endif
5293 
5294     /*
5295      * Close superfluous windows.
5296      */
5297     for (wp = lastwin; open_wins > count; )
5298     {
5299 	r = (P_HID(wp->w_buffer) || !bufIsChanged(wp->w_buffer)
5300 				     || autowrite(wp->w_buffer, FALSE) == OK);
5301 #ifdef FEAT_AUTOCMD
5302 	if (!win_valid(wp))
5303 	{
5304 	    /* BufWrite Autocommands made the window invalid, start over */
5305 	    wp = lastwin;
5306 	}
5307 	else
5308 #endif
5309 	    if (r)
5310 	{
5311 	    win_close(wp, !P_HID(wp->w_buffer));
5312 	    --open_wins;
5313 	    wp = lastwin;
5314 	}
5315 	else
5316 	{
5317 	    wp = wp->w_prev;
5318 	    if (wp == NULL)
5319 		break;
5320 	}
5321     }
5322 }
5323 # endif /* FEAT_LISTCMDS */
5324 
5325 #endif /* FEAT_WINDOWS */
5326 
5327 static int  chk_modeline(linenr_T, int);
5328 
5329 /*
5330  * do_modelines() - process mode lines for the current file
5331  *
5332  * "flags" can be:
5333  * OPT_WINONLY	    only set options local to window
5334  * OPT_NOWIN	    don't set options local to window
5335  *
5336  * Returns immediately if the "ml" option isn't set.
5337  */
5338     void
5339 do_modelines(int flags)
5340 {
5341     linenr_T	lnum;
5342     int		nmlines;
5343     static int	entered = 0;
5344 
5345     if (!curbuf->b_p_ml || (nmlines = (int)p_mls) == 0)
5346 	return;
5347 
5348     /* Disallow recursive entry here.  Can happen when executing a modeline
5349      * triggers an autocommand, which reloads modelines with a ":do". */
5350     if (entered)
5351 	return;
5352 
5353     ++entered;
5354     for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count && lnum <= nmlines;
5355 								       ++lnum)
5356 	if (chk_modeline(lnum, flags) == FAIL)
5357 	    nmlines = 0;
5358 
5359     for (lnum = curbuf->b_ml.ml_line_count; lnum > 0 && lnum > nmlines
5360 		       && lnum > curbuf->b_ml.ml_line_count - nmlines; --lnum)
5361 	if (chk_modeline(lnum, flags) == FAIL)
5362 	    nmlines = 0;
5363     --entered;
5364 }
5365 
5366 #include "version.h"		/* for version number */
5367 
5368 /*
5369  * chk_modeline() - check a single line for a mode string
5370  * Return FAIL if an error encountered.
5371  */
5372     static int
5373 chk_modeline(
5374     linenr_T	lnum,
5375     int		flags)		/* Same as for do_modelines(). */
5376 {
5377     char_u	*s;
5378     char_u	*e;
5379     char_u	*linecopy;		/* local copy of any modeline found */
5380     int		prev;
5381     int		vers;
5382     int		end;
5383     int		retval = OK;
5384     char_u	*save_sourcing_name;
5385     linenr_T	save_sourcing_lnum;
5386 #ifdef FEAT_EVAL
5387     scid_T	save_SID;
5388 #endif
5389 
5390     prev = -1;
5391     for (s = ml_get(lnum); *s != NUL; ++s)
5392     {
5393 	if (prev == -1 || vim_isspace(prev))
5394 	{
5395 	    if ((prev != -1 && STRNCMP(s, "ex:", (size_t)3) == 0)
5396 		    || STRNCMP(s, "vi:", (size_t)3) == 0)
5397 		break;
5398 	    /* Accept both "vim" and "Vim". */
5399 	    if ((s[0] == 'v' || s[0] == 'V') && s[1] == 'i' && s[2] == 'm')
5400 	    {
5401 		if (s[3] == '<' || s[3] == '=' || s[3] == '>')
5402 		    e = s + 4;
5403 		else
5404 		    e = s + 3;
5405 		vers = getdigits(&e);
5406 		if (*e == ':'
5407 			&& (s[0] != 'V'
5408 				  || STRNCMP(skipwhite(e + 1), "set", 3) == 0)
5409 			&& (s[3] == ':'
5410 			    || (VIM_VERSION_100 >= vers && isdigit(s[3]))
5411 			    || (VIM_VERSION_100 < vers && s[3] == '<')
5412 			    || (VIM_VERSION_100 > vers && s[3] == '>')
5413 			    || (VIM_VERSION_100 == vers && s[3] == '=')))
5414 		    break;
5415 	    }
5416 	}
5417 	prev = *s;
5418     }
5419 
5420     if (*s)
5421     {
5422 	do				/* skip over "ex:", "vi:" or "vim:" */
5423 	    ++s;
5424 	while (s[-1] != ':');
5425 
5426 	s = linecopy = vim_strsave(s);	/* copy the line, it will change */
5427 	if (linecopy == NULL)
5428 	    return FAIL;
5429 
5430 	save_sourcing_lnum = sourcing_lnum;
5431 	save_sourcing_name = sourcing_name;
5432 	sourcing_lnum = lnum;		/* prepare for emsg() */
5433 	sourcing_name = (char_u *)"modelines";
5434 
5435 	end = FALSE;
5436 	while (end == FALSE)
5437 	{
5438 	    s = skipwhite(s);
5439 	    if (*s == NUL)
5440 		break;
5441 
5442 	    /*
5443 	     * Find end of set command: ':' or end of line.
5444 	     * Skip over "\:", replacing it with ":".
5445 	     */
5446 	    for (e = s; *e != ':' && *e != NUL; ++e)
5447 		if (e[0] == '\\' && e[1] == ':')
5448 		    STRMOVE(e, e + 1);
5449 	    if (*e == NUL)
5450 		end = TRUE;
5451 
5452 	    /*
5453 	     * If there is a "set" command, require a terminating ':' and
5454 	     * ignore the stuff after the ':'.
5455 	     * "vi:set opt opt opt: foo" -- foo not interpreted
5456 	     * "vi:opt opt opt: foo" -- foo interpreted
5457 	     * Accept "se" for compatibility with Elvis.
5458 	     */
5459 	    if (STRNCMP(s, "set ", (size_t)4) == 0
5460 		    || STRNCMP(s, "se ", (size_t)3) == 0)
5461 	    {
5462 		if (*e != ':')		/* no terminating ':'? */
5463 		    break;
5464 		end = TRUE;
5465 		s = vim_strchr(s, ' ') + 1;
5466 	    }
5467 	    *e = NUL;			/* truncate the set command */
5468 
5469 	    if (*s != NUL)		/* skip over an empty "::" */
5470 	    {
5471 #ifdef FEAT_EVAL
5472 		save_SID = current_SID;
5473 		current_SID = SID_MODELINE;
5474 #endif
5475 		retval = do_set(s, OPT_MODELINE | OPT_LOCAL | flags);
5476 #ifdef FEAT_EVAL
5477 		current_SID = save_SID;
5478 #endif
5479 		if (retval == FAIL)		/* stop if error found */
5480 		    break;
5481 	    }
5482 	    s = e + 1;			/* advance to next part */
5483 	}
5484 
5485 	sourcing_lnum = save_sourcing_lnum;
5486 	sourcing_name = save_sourcing_name;
5487 
5488 	vim_free(linecopy);
5489     }
5490     return retval;
5491 }
5492 
5493 #if defined(FEAT_VIMINFO) || defined(PROTO)
5494     int
5495 read_viminfo_bufferlist(
5496     vir_T	*virp,
5497     int		writing)
5498 {
5499     char_u	*tab;
5500     linenr_T	lnum;
5501     colnr_T	col;
5502     buf_T	*buf;
5503     char_u	*sfname;
5504     char_u	*xline;
5505 
5506     /* Handle long line and escaped characters. */
5507     xline = viminfo_readstring(virp, 1, FALSE);
5508 
5509     /* don't read in if there are files on the command-line or if writing: */
5510     if (xline != NULL && !writing && ARGCOUNT == 0
5511 				       && find_viminfo_parameter('%') != NULL)
5512     {
5513 	/* Format is: <fname> Tab <lnum> Tab <col>.
5514 	 * Watch out for a Tab in the file name, work from the end. */
5515 	lnum = 0;
5516 	col = 0;
5517 	tab = vim_strrchr(xline, '\t');
5518 	if (tab != NULL)
5519 	{
5520 	    *tab++ = '\0';
5521 	    col = (colnr_T)atoi((char *)tab);
5522 	    tab = vim_strrchr(xline, '\t');
5523 	    if (tab != NULL)
5524 	    {
5525 		*tab++ = '\0';
5526 		lnum = atol((char *)tab);
5527 	    }
5528 	}
5529 
5530 	/* Expand "~/" in the file name at "line + 1" to a full path.
5531 	 * Then try shortening it by comparing with the current directory */
5532 	expand_env(xline, NameBuff, MAXPATHL);
5533 	sfname = shorten_fname1(NameBuff);
5534 
5535 	buf = buflist_new(NameBuff, sfname, (linenr_T)0, BLN_LISTED);
5536 	if (buf != NULL)	/* just in case... */
5537 	{
5538 	    buf->b_last_cursor.lnum = lnum;
5539 	    buf->b_last_cursor.col = col;
5540 	    buflist_setfpos(buf, curwin, lnum, col, FALSE);
5541 	}
5542     }
5543     vim_free(xline);
5544 
5545     return viminfo_readline(virp);
5546 }
5547 
5548     void
5549 write_viminfo_bufferlist(FILE *fp)
5550 {
5551     buf_T	*buf;
5552 #ifdef FEAT_WINDOWS
5553     win_T	*win;
5554     tabpage_T	*tp;
5555 #endif
5556     char_u	*line;
5557     int		max_buffers;
5558 
5559     if (find_viminfo_parameter('%') == NULL)
5560 	return;
5561 
5562     /* Without a number -1 is returned: do all buffers. */
5563     max_buffers = get_viminfo_parameter('%');
5564 
5565     /* Allocate room for the file name, lnum and col. */
5566 #define LINE_BUF_LEN (MAXPATHL + 40)
5567     line = alloc(LINE_BUF_LEN);
5568     if (line == NULL)
5569 	return;
5570 
5571 #ifdef FEAT_WINDOWS
5572     FOR_ALL_TAB_WINDOWS(tp, win)
5573 	set_last_cursor(win);
5574 #else
5575     set_last_cursor(curwin);
5576 #endif
5577 
5578     fputs(_("\n# Buffer list:\n"), fp);
5579     FOR_ALL_BUFFERS(buf)
5580     {
5581 	if (buf->b_fname == NULL
5582 		|| !buf->b_p_bl
5583 #ifdef FEAT_QUICKFIX
5584 		|| bt_quickfix(buf)
5585 #endif
5586 		|| removable(buf->b_ffname))
5587 	    continue;
5588 
5589 	if (max_buffers-- == 0)
5590 	    break;
5591 	putc('%', fp);
5592 	home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE);
5593 	vim_snprintf_add((char *)line, LINE_BUF_LEN, "\t%ld\t%d",
5594 			(long)buf->b_last_cursor.lnum,
5595 			buf->b_last_cursor.col);
5596 	viminfo_writestring(fp, line);
5597     }
5598     vim_free(line);
5599 }
5600 #endif
5601 
5602 
5603 /*
5604  * Return special buffer name.
5605  * Returns NULL when the buffer has a normal file name.
5606  */
5607     char_u *
5608 buf_spname(buf_T *buf)
5609 {
5610 #if defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)
5611     if (bt_quickfix(buf))
5612     {
5613 	win_T	    *win;
5614 	tabpage_T   *tp;
5615 
5616 	/*
5617 	 * For location list window, w_llist_ref points to the location list.
5618 	 * For quickfix window, w_llist_ref is NULL.
5619 	 */
5620 	if (find_win_for_buf(buf, &win, &tp) == OK && win->w_llist_ref != NULL)
5621 	    return (char_u *)_(msg_loclist);
5622 	else
5623 	    return (char_u *)_(msg_qflist);
5624     }
5625 #endif
5626 #ifdef FEAT_QUICKFIX
5627     /* There is no _file_ when 'buftype' is "nofile", b_sfname
5628      * contains the name as specified by the user */
5629     if (bt_nofile(buf))
5630     {
5631 	if (buf->b_sfname != NULL)
5632 	    return buf->b_sfname;
5633 	return (char_u *)_("[Scratch]");
5634     }
5635 #endif
5636     if (buf->b_fname == NULL)
5637 	return (char_u *)_("[No Name]");
5638     return NULL;
5639 }
5640 
5641 #if (defined(FEAT_QUICKFIX) && defined(FEAT_WINDOWS)) \
5642 	|| defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
5643 	|| defined(PROTO)
5644 /*
5645  * Find a window for buffer "buf".
5646  * If found OK is returned and "wp" and "tp" are set to the window and tabpage.
5647  * If not found FAIL is returned.
5648  */
5649     int
5650 find_win_for_buf(
5651     buf_T     *buf,
5652     win_T     **wp,
5653     tabpage_T **tp)
5654 {
5655     FOR_ALL_TAB_WINDOWS(*tp, *wp)
5656 	if ((*wp)->w_buffer == buf)
5657 	    goto win_found;
5658     return FAIL;
5659 win_found:
5660     return OK;
5661 }
5662 #endif
5663 
5664 #if defined(FEAT_SIGNS) || defined(PROTO)
5665 /*
5666  * Insert the sign into the signlist.
5667  */
5668     static void
5669 insert_sign(
5670     buf_T	*buf,		/* buffer to store sign in */
5671     signlist_T	*prev,		/* previous sign entry */
5672     signlist_T	*next,		/* next sign entry */
5673     int		id,		/* sign ID */
5674     linenr_T	lnum,		/* line number which gets the mark */
5675     int		typenr)		/* typenr of sign we are adding */
5676 {
5677     signlist_T	*newsign;
5678 
5679     newsign = (signlist_T *)lalloc((long_u)sizeof(signlist_T), FALSE);
5680     if (newsign != NULL)
5681     {
5682 	newsign->id = id;
5683 	newsign->lnum = lnum;
5684 	newsign->typenr = typenr;
5685 	newsign->next = next;
5686 #ifdef FEAT_NETBEANS_INTG
5687 	newsign->prev = prev;
5688 	if (next != NULL)
5689 	    next->prev = newsign;
5690 #endif
5691 
5692 	if (prev == NULL)
5693 	{
5694 	    /* When adding first sign need to redraw the windows to create the
5695 	     * column for signs. */
5696 	    if (buf->b_signlist == NULL)
5697 	    {
5698 		redraw_buf_later(buf, NOT_VALID);
5699 		changed_cline_bef_curs();
5700 	    }
5701 
5702 	    /* first sign in signlist */
5703 	    buf->b_signlist = newsign;
5704 #ifdef FEAT_NETBEANS_INTG
5705 	    if (netbeans_active())
5706 		buf->b_has_sign_column = TRUE;
5707 #endif
5708 	}
5709 	else
5710 	    prev->next = newsign;
5711     }
5712 }
5713 
5714 /*
5715  * Add the sign into the signlist. Find the right spot to do it though.
5716  */
5717     void
5718 buf_addsign(
5719     buf_T	*buf,		/* buffer to store sign in */
5720     int		id,		/* sign ID */
5721     linenr_T	lnum,		/* line number which gets the mark */
5722     int		typenr)		/* typenr of sign we are adding */
5723 {
5724     signlist_T	*sign;		/* a sign in the signlist */
5725     signlist_T	*prev;		/* the previous sign */
5726 
5727     prev = NULL;
5728     for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5729     {
5730 	if (lnum == sign->lnum && id == sign->id)
5731 	{
5732 	    sign->typenr = typenr;
5733 	    return;
5734 	}
5735 	else if (
5736 #ifndef FEAT_NETBEANS_INTG  /* keep signs sorted by lnum */
5737 		   id < 0 &&
5738 #endif
5739 			     lnum < sign->lnum)
5740 	{
5741 #ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5742 	    /* XXX - GRP: Is this because of sign slide problem? Or is it
5743 	     * really needed? Or is it because we allow multiple signs per
5744 	     * line? If so, should I add that feature to FEAT_SIGNS?
5745 	     */
5746 	    while (prev != NULL && prev->lnum == lnum)
5747 		prev = prev->prev;
5748 	    if (prev == NULL)
5749 		sign = buf->b_signlist;
5750 	    else
5751 		sign = prev->next;
5752 #endif
5753 	    insert_sign(buf, prev, sign, id, lnum, typenr);
5754 	    return;
5755 	}
5756 	prev = sign;
5757     }
5758 #ifdef FEAT_NETBEANS_INTG /* insert new sign at head of list for this lnum */
5759     /* XXX - GRP: See previous comment */
5760     while (prev != NULL && prev->lnum == lnum)
5761 	prev = prev->prev;
5762     if (prev == NULL)
5763 	sign = buf->b_signlist;
5764     else
5765 	sign = prev->next;
5766 #endif
5767     insert_sign(buf, prev, sign, id, lnum, typenr);
5768 
5769     return;
5770 }
5771 
5772 /*
5773  * For an existing, placed sign "markId" change the type to "typenr".
5774  * Returns the line number of the sign, or zero if the sign is not found.
5775  */
5776     linenr_T
5777 buf_change_sign_type(
5778     buf_T	*buf,		/* buffer to store sign in */
5779     int		markId,		/* sign ID */
5780     int		typenr)		/* typenr of sign we are adding */
5781 {
5782     signlist_T	*sign;		/* a sign in the signlist */
5783 
5784     for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5785     {
5786 	if (sign->id == markId)
5787 	{
5788 	    sign->typenr = typenr;
5789 	    return sign->lnum;
5790 	}
5791     }
5792 
5793     return (linenr_T)0;
5794 }
5795 
5796     int
5797 buf_getsigntype(
5798     buf_T	*buf,
5799     linenr_T	lnum,
5800     int		type)	/* SIGN_ICON, SIGN_TEXT, SIGN_ANY, SIGN_LINEHL */
5801 {
5802     signlist_T	*sign;		/* a sign in a b_signlist */
5803 
5804     for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5805 	if (sign->lnum == lnum
5806 		&& (type == SIGN_ANY
5807 # ifdef FEAT_SIGN_ICONS
5808 		    || (type == SIGN_ICON
5809 			&& sign_get_image(sign->typenr) != NULL)
5810 # endif
5811 		    || (type == SIGN_TEXT
5812 			&& sign_get_text(sign->typenr) != NULL)
5813 		    || (type == SIGN_LINEHL
5814 			&& sign_get_attr(sign->typenr, TRUE) != 0)))
5815 	    return sign->typenr;
5816     return 0;
5817 }
5818 
5819 
5820     linenr_T
5821 buf_delsign(
5822     buf_T	*buf,		/* buffer sign is stored in */
5823     int		id)		/* sign id */
5824 {
5825     signlist_T	**lastp;	/* pointer to pointer to current sign */
5826     signlist_T	*sign;		/* a sign in a b_signlist */
5827     signlist_T	*next;		/* the next sign in a b_signlist */
5828     linenr_T	lnum;		/* line number whose sign was deleted */
5829 
5830     lastp = &buf->b_signlist;
5831     lnum = 0;
5832     for (sign = buf->b_signlist; sign != NULL; sign = next)
5833     {
5834 	next = sign->next;
5835 	if (sign->id == id)
5836 	{
5837 	    *lastp = next;
5838 #ifdef FEAT_NETBEANS_INTG
5839 	    if (next != NULL)
5840 		next->prev = sign->prev;
5841 #endif
5842 	    lnum = sign->lnum;
5843 	    vim_free(sign);
5844 	    break;
5845 	}
5846 	else
5847 	    lastp = &sign->next;
5848     }
5849 
5850     /* When deleted the last sign need to redraw the windows to remove the
5851      * sign column. */
5852     if (buf->b_signlist == NULL)
5853     {
5854 	redraw_buf_later(buf, NOT_VALID);
5855 	changed_cline_bef_curs();
5856     }
5857 
5858     return lnum;
5859 }
5860 
5861 
5862 /*
5863  * Find the line number of the sign with the requested id. If the sign does
5864  * not exist, return 0 as the line number. This will still let the correct file
5865  * get loaded.
5866  */
5867     int
5868 buf_findsign(
5869     buf_T	*buf,		/* buffer to store sign in */
5870     int		id)		/* sign ID */
5871 {
5872     signlist_T	*sign;		/* a sign in the signlist */
5873 
5874     for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5875 	if (sign->id == id)
5876 	    return sign->lnum;
5877 
5878     return 0;
5879 }
5880 
5881     int
5882 buf_findsign_id(
5883     buf_T	*buf,		/* buffer whose sign we are searching for */
5884     linenr_T	lnum)		/* line number of sign */
5885 {
5886     signlist_T	*sign;		/* a sign in the signlist */
5887 
5888     for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5889 	if (sign->lnum == lnum)
5890 	    return sign->id;
5891 
5892     return 0;
5893 }
5894 
5895 
5896 # if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
5897 /* see if a given type of sign exists on a specific line */
5898     int
5899 buf_findsigntype_id(
5900     buf_T	*buf,		/* buffer whose sign we are searching for */
5901     linenr_T	lnum,		/* line number of sign */
5902     int		typenr)		/* sign type number */
5903 {
5904     signlist_T	*sign;		/* a sign in the signlist */
5905 
5906     for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5907 	if (sign->lnum == lnum && sign->typenr == typenr)
5908 	    return sign->id;
5909 
5910     return 0;
5911 }
5912 
5913 
5914 #  if defined(FEAT_SIGN_ICONS) || defined(PROTO)
5915 /* return the number of icons on the given line */
5916     int
5917 buf_signcount(buf_T *buf, linenr_T lnum)
5918 {
5919     signlist_T	*sign;		/* a sign in the signlist */
5920     int		count = 0;
5921 
5922     for (sign = buf->b_signlist; sign != NULL; sign = sign->next)
5923 	if (sign->lnum == lnum)
5924 	    if (sign_get_image(sign->typenr) != NULL)
5925 		count++;
5926 
5927     return count;
5928 }
5929 #  endif /* FEAT_SIGN_ICONS */
5930 # endif /* FEAT_NETBEANS_INTG */
5931 
5932 
5933 /*
5934  * Delete signs in buffer "buf".
5935  */
5936     void
5937 buf_delete_signs(buf_T *buf)
5938 {
5939     signlist_T	*next;
5940 
5941     /* When deleting the last sign need to redraw the windows to remove the
5942      * sign column. Not when curwin is NULL (this means we're exiting). */
5943     if (buf->b_signlist != NULL && curwin != NULL)
5944     {
5945 	redraw_buf_later(buf, NOT_VALID);
5946 	changed_cline_bef_curs();
5947     }
5948 
5949     while (buf->b_signlist != NULL)
5950     {
5951 	next = buf->b_signlist->next;
5952 	vim_free(buf->b_signlist);
5953 	buf->b_signlist = next;
5954     }
5955 }
5956 
5957 /*
5958  * Delete all signs in all buffers.
5959  */
5960     void
5961 buf_delete_all_signs(void)
5962 {
5963     buf_T	*buf;		/* buffer we are checking for signs */
5964 
5965     FOR_ALL_BUFFERS(buf)
5966 	if (buf->b_signlist != NULL)
5967 	    buf_delete_signs(buf);
5968 }
5969 
5970 /*
5971  * List placed signs for "rbuf".  If "rbuf" is NULL do it for all buffers.
5972  */
5973     void
5974 sign_list_placed(buf_T *rbuf)
5975 {
5976     buf_T	*buf;
5977     signlist_T	*p;
5978     char	lbuf[BUFSIZ];
5979 
5980     MSG_PUTS_TITLE(_("\n--- Signs ---"));
5981     msg_putchar('\n');
5982     if (rbuf == NULL)
5983 	buf = firstbuf;
5984     else
5985 	buf = rbuf;
5986     while (buf != NULL && !got_int)
5987     {
5988 	if (buf->b_signlist != NULL)
5989 	{
5990 	    vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname);
5991 	    MSG_PUTS_ATTR(lbuf, hl_attr(HLF_D));
5992 	    msg_putchar('\n');
5993 	}
5994 	for (p = buf->b_signlist; p != NULL && !got_int; p = p->next)
5995 	{
5996 	    vim_snprintf(lbuf, BUFSIZ, _("    line=%ld  id=%d  name=%s"),
5997 			   (long)p->lnum, p->id, sign_typenr2name(p->typenr));
5998 	    MSG_PUTS(lbuf);
5999 	    msg_putchar('\n');
6000 	}
6001 	if (rbuf != NULL)
6002 	    break;
6003 	buf = buf->b_next;
6004     }
6005 }
6006 
6007 /*
6008  * Adjust a placed sign for inserted/deleted lines.
6009  */
6010     void
6011 sign_mark_adjust(
6012     linenr_T	line1,
6013     linenr_T	line2,
6014     long	amount,
6015     long	amount_after)
6016 {
6017     signlist_T	*sign;		/* a sign in a b_signlist */
6018 
6019     for (sign = curbuf->b_signlist; sign != NULL; sign = sign->next)
6020     {
6021 	if (sign->lnum >= line1 && sign->lnum <= line2)
6022 	{
6023 	    if (amount == MAXLNUM)
6024 		sign->lnum = line1;
6025 	    else
6026 		sign->lnum += amount;
6027 	}
6028 	else if (sign->lnum > line2)
6029 	    sign->lnum += amount_after;
6030     }
6031 }
6032 #endif /* FEAT_SIGNS */
6033 
6034 /*
6035  * Set 'buflisted' for curbuf to "on" and trigger autocommands if it changed.
6036  */
6037     void
6038 set_buflisted(int on)
6039 {
6040     if (on != curbuf->b_p_bl)
6041     {
6042 	curbuf->b_p_bl = on;
6043 #ifdef FEAT_AUTOCMD
6044 	if (on)
6045 	    apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
6046 	else
6047 	    apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
6048 #endif
6049     }
6050 }
6051 
6052 /*
6053  * Read the file for "buf" again and check if the contents changed.
6054  * Return TRUE if it changed or this could not be checked.
6055  */
6056     int
6057 buf_contents_changed(buf_T *buf)
6058 {
6059     buf_T	*newbuf;
6060     int		differ = TRUE;
6061     linenr_T	lnum;
6062     aco_save_T	aco;
6063     exarg_T	ea;
6064 
6065     /* Allocate a buffer without putting it in the buffer list. */
6066     newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
6067     if (newbuf == NULL)
6068 	return TRUE;
6069 
6070     /* Force the 'fileencoding' and 'fileformat' to be equal. */
6071     if (prep_exarg(&ea, buf) == FAIL)
6072     {
6073 	wipe_buffer(newbuf, FALSE);
6074 	return TRUE;
6075     }
6076 
6077     /* set curwin/curbuf to buf and save a few things */
6078     aucmd_prepbuf(&aco, newbuf);
6079 
6080     if (ml_open(curbuf) == OK
6081 	    && readfile(buf->b_ffname, buf->b_fname,
6082 				  (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
6083 					    &ea, READ_NEW | READ_DUMMY) == OK)
6084     {
6085 	/* compare the two files line by line */
6086 	if (buf->b_ml.ml_line_count == curbuf->b_ml.ml_line_count)
6087 	{
6088 	    differ = FALSE;
6089 	    for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6090 		if (STRCMP(ml_get_buf(buf, lnum, FALSE), ml_get(lnum)) != 0)
6091 		{
6092 		    differ = TRUE;
6093 		    break;
6094 		}
6095 	}
6096     }
6097     vim_free(ea.cmd);
6098 
6099     /* restore curwin/curbuf and a few other things */
6100     aucmd_restbuf(&aco);
6101 
6102     if (curbuf != newbuf)	/* safety check */
6103 	wipe_buffer(newbuf, FALSE);
6104 
6105     return differ;
6106 }
6107 
6108 /*
6109  * Wipe out a buffer and decrement the last buffer number if it was used for
6110  * this buffer.  Call this to wipe out a temp buffer that does not contain any
6111  * marks.
6112  */
6113     void
6114 wipe_buffer(
6115     buf_T	*buf,
6116     int		aucmd UNUSED)	    /* When TRUE trigger autocommands. */
6117 {
6118     if (buf->b_fnum == top_file_num - 1)
6119 	--top_file_num;
6120 
6121 #ifdef FEAT_AUTOCMD
6122     if (!aucmd)		    /* Don't trigger BufDelete autocommands here. */
6123 	block_autocmds();
6124 #endif
6125     close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
6126 #ifdef FEAT_AUTOCMD
6127     if (!aucmd)
6128 	unblock_autocmds();
6129 #endif
6130 }
6131