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