comparison src/globals.h @ 9481:7520696c14b0 v7.4.2021

commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 10 19:03:57 2016 +0200 patch 7.4.2021 Problem: Still too many buf_valid() calls. Solution: Make au_new_curbuf a bufref. Use bufref_valid() in more places.
author Christian Brabandt <cb@256bit.org>
date Sun, 10 Jul 2016 19:15:06 +0200
parents 38e2fc4ee4ef
children bb538c090668
comparison
equal deleted inserted replaced
9480:8d1406fbb955 9481:7520696c14b0
384 starting to execute 384 starting to execute
385 autocommands */ 385 autocommands */
386 386
387 /* When deleting the current buffer, another one must be loaded. If we know 387 /* When deleting the current buffer, another one must be loaded. If we know
388 * which one is preferred, au_new_curbuf is set to it */ 388 * which one is preferred, au_new_curbuf is set to it */
389 EXTERN buf_T *au_new_curbuf INIT(= NULL); 389 EXTERN bufref_T au_new_curbuf INIT(= {NULL});
390 390
391 /* When deleting a buffer/window and autocmd_busy is TRUE, do not free the 391 /* When deleting a buffer/window and autocmd_busy is TRUE, do not free the
392 * buffer/window. but link it in the list starting with 392 * buffer/window. but link it in the list starting with
393 * au_pending_free_buf/ap_pending_free_win, using b_next/w_next. 393 * au_pending_free_buf/ap_pending_free_win, using b_next/w_next.
394 * Free the buffer/window when autocmd_busy is being set to FALSE. */ 394 * Free the buffer/window when autocmd_busy is being set to FALSE. */