comparison src/globals.h @ 13221:dc28351a85d4 v8.0.1485

patch 8.0.1485: weird autocmd may cause arglist to be changed recursively commit https://github.com/vim/vim/commit/9e33efd1523b85a70533930dd43a26925a2b648c Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 9 17:50:28 2018 +0100 patch 8.0.1485: weird autocmd may cause arglist to be changed recursively Problem: Weird autocmd may cause arglist to be changed recursively. Solution: Prevent recursively changing the argument list. (Christian Brabandt, closes #2472)
author Christian Brabandt <cb@256bit.org>
date Fri, 09 Feb 2018 18:00:07 +0100
parents c1534eb682a6
children 5ed6e4a25925
comparison
equal deleted inserted replaced
13220:195671a4d06f 13221:dc28351a85d4
1592 #endif 1592 #endif
1593 #ifndef FEAT_CLIPBOARD 1593 #ifndef FEAT_CLIPBOARD
1594 EXTERN char_u e_invalidreg[] INIT(= N_("E850: Invalid register name")); 1594 EXTERN char_u e_invalidreg[] INIT(= N_("E850: Invalid register name"));
1595 #endif 1595 #endif
1596 EXTERN char_u e_dirnotf[] INIT(= N_("E919: Directory not found in '%s': \"%s\"")); 1596 EXTERN char_u e_dirnotf[] INIT(= N_("E919: Directory not found in '%s': \"%s\""));
1597 #ifdef FEAT_AUTOCMD
1598 EXTERN char_u e_au_recursive[] INIT(= N_("E952: Autocommand caused recursive behavior"));
1599 #endif
1597 1600
1598 #ifdef FEAT_GUI_MAC 1601 #ifdef FEAT_GUI_MAC
1599 EXTERN short disallow_gui INIT(= FALSE); 1602 EXTERN short disallow_gui INIT(= FALSE);
1600 #endif 1603 #endif
1601 1604