comparison src/popupwin.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 b29d8a06e72c
children 068337e86133
comparison
equal deleted inserted replaced
18762:19582783e5ad 18763:49b78d6465e5
11 * Implementation of popup windows. See ":help popup". 11 * Implementation of popup windows. See ":help popup".
12 */ 12 */
13 13
14 #include "vim.h" 14 #include "vim.h"
15 15
16 #if defined(FEAT_TEXT_PROP) || defined(PROTO) 16 #if defined(FEAT_PROP_POPUP) || defined(PROTO)
17 17
18 typedef struct { 18 typedef struct {
19 char *pp_name; 19 char *pp_name;
20 poppos_T pp_val; 20 poppos_T pp_val;
21 } poppos_entry_T; 21 } poppos_entry_T;
3862 3862
3863 if (wp != NULL) 3863 if (wp != NULL)
3864 popup_set_title(wp); 3864 popup_set_title(wp);
3865 } 3865 }
3866 3866
3867 #endif // FEAT_TEXT_PROP 3867 #endif // FEAT_PROP_POPUP