comparison src/eval.c @ 18763:49b78d6465e5 v8.1.2371

patch 8.1.2371: FEAT_TEXT_PROP is a confusing name Commit: https://github.com/vim/vim/commit/05ad5ff0ab34ed9a5296dedd420ca81698b8ce22 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 30 22:48:27 2019 +0100 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name Problem: FEAT_TEXT_PROP is a confusing name. Solution: Use FEAT_PROP_POPUP. (Naruhiko Nishino, closes https://github.com/vim/vim/issues/5291)
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 Nov 2019 23:00:05 +0100
parents baf890fa1621
children 3a68dc2a1bc1
comparison
equal deleted inserted replaced
18762:19582783e5ad 18763:49b78d6465e5
3888 abort = abort || set_ref_in_item(&wp->w_winvar.di_tv, copyID, 3888 abort = abort || set_ref_in_item(&wp->w_winvar.di_tv, copyID,
3889 NULL, NULL); 3889 NULL, NULL);
3890 if (aucmd_win != NULL) 3890 if (aucmd_win != NULL)
3891 abort = abort || set_ref_in_item(&aucmd_win->w_winvar.di_tv, copyID, 3891 abort = abort || set_ref_in_item(&aucmd_win->w_winvar.di_tv, copyID,
3892 NULL, NULL); 3892 NULL, NULL);
3893 #ifdef FEAT_TEXT_PROP 3893 #ifdef FEAT_PROP_POPUP
3894 for (wp = first_popupwin; wp != NULL; wp = wp->w_next) 3894 for (wp = first_popupwin; wp != NULL; wp = wp->w_next)
3895 abort = abort || set_ref_in_item(&wp->w_winvar.di_tv, copyID, 3895 abort = abort || set_ref_in_item(&wp->w_winvar.di_tv, copyID,
3896 NULL, NULL); 3896 NULL, NULL);
3897 FOR_ALL_TABPAGES(tp) 3897 FOR_ALL_TABPAGES(tp)
3898 for (wp = tp->tp_first_popupwin; wp != NULL; wp = wp->w_next) 3898 for (wp = tp->tp_first_popupwin; wp != NULL; wp = wp->w_next)
3952 3952
3953 #ifdef FEAT_TERMINAL 3953 #ifdef FEAT_TERMINAL
3954 abort = abort || set_ref_in_term(copyID); 3954 abort = abort || set_ref_in_term(copyID);
3955 #endif 3955 #endif
3956 3956
3957 #ifdef FEAT_TEXT_PROP 3957 #ifdef FEAT_PROP_POPUP
3958 abort = abort || set_ref_in_popups(copyID); 3958 abort = abort || set_ref_in_popups(copyID);
3959 #endif 3959 #endif
3960 3960
3961 if (!abort) 3961 if (!abort)
3962 { 3962 {