summaryrefslogtreecommitdiff
path: root/src/proto/dict.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-06-02 16:51:21 +0200
committerBram Moolenaar <Bram@vim.org>2019-06-02 16:51:21 +0200
commitb0ebbda06cf1a4a7c40cb274529c4c53de534e32 (patch)
tree8f0a2b35f078b542cb168e58d273304ee18efeed /src/proto/dict.pro
parentca2f7037c1a53bdbb6f5dc0a2f92d50020e062cc (diff)
downloadvim-git-b0ebbda06cf1a4a7c40cb274529c4c53de534e32.tar.gz
patch 8.1.1452: line and col property of popup windows not properly checkedv8.1.1452
Problem: Line and col property of popup windows not properly checked. Solution: Check for "+" or "-" sign.
Diffstat (limited to 'src/proto/dict.pro')
-rw-r--r--src/proto/dict.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/dict.pro b/src/proto/dict.pro
index 688255cc1..d4820256d 100644
--- a/src/proto/dict.pro
+++ b/src/proto/dict.pro
@@ -25,6 +25,7 @@ long dict_len(dict_T *d);
dictitem_T *dict_find(dict_T *d, char_u *key, int len);
char_u *dict_get_string(dict_T *d, char_u *key, int save);
varnumber_T dict_get_number(dict_T *d, char_u *key);
+varnumber_T dict_get_number_check(dict_T *d, char_u *key);
char_u *dict2string(typval_T *tv, int copyID, int restore_copyID);
int dict_get_tv(char_u **arg, typval_T *rettv, int evaluate);
void dict_extend(dict_T *d1, dict_T *d2, char_u *action);