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