Mercurial > vim
annotate src/proto/digraph.pro @ 26765:e5fdd48c442b v8.2.3911
patch 8.2.3911: Vim9: type check for filter() does not accept unknown
Commit: https://github.com/vim/vim/commit/ef8f04b1d1daf2e0be8fa38dedcae84ebfc5ffb4
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Dec 27 12:29:19 2021 +0000
patch 8.2.3911: Vim9: type check for filter() does not accept unknown
Problem: Vim9: type check for filter() does not accept unknown.
Solution: Also accept unknown for the return type. (closes https://github.com/vim/vim/issues/9413)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 27 Dec 2021 13:30:03 +0100 |
parents | 0082503ff2ff |
children |
rev | line source |
---|---|
7 | 1 /* digraph.c */ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
3929
diff
changeset
|
2 int do_digraph(int c); |
14736
3e9b24eac417
patch 8.1.0380: "make proto" doesn't work well
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
3 char_u *get_digraph_for_char(int val_arg); |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
3929
diff
changeset
|
4 int get_digraph(int cmdline); |
25378
890fd8211202
patch 8.2.3226: new digraph functions use old naming scheme
Bram Moolenaar <Bram@vim.org>
parents:
25294
diff
changeset
|
5 int digraph_get(int char1, int char2, int meta_char); |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
3929
diff
changeset
|
6 void putdigraph(char_u *str); |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14736
diff
changeset
|
7 void listdigraphs(int use_headers); |
25378
890fd8211202
patch 8.2.3226: new digraph functions use old naming scheme
Bram Moolenaar <Bram@vim.org>
parents:
25294
diff
changeset
|
8 void f_digraph_get(typval_T *argvars, typval_T *rettv); |
890fd8211202
patch 8.2.3226: new digraph functions use old naming scheme
Bram Moolenaar <Bram@vim.org>
parents:
25294
diff
changeset
|
9 void f_digraph_getlist(typval_T *argvars, typval_T *rettv); |
890fd8211202
patch 8.2.3226: new digraph functions use old naming scheme
Bram Moolenaar <Bram@vim.org>
parents:
25294
diff
changeset
|
10 void f_digraph_set(typval_T *argvars, typval_T *rettv); |
890fd8211202
patch 8.2.3226: new digraph functions use old naming scheme
Bram Moolenaar <Bram@vim.org>
parents:
25294
diff
changeset
|
11 void f_digraph_setlist(typval_T *argvars, typval_T *rettv); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15152
diff
changeset
|
12 char *keymap_init(void); |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
3929
diff
changeset
|
13 void ex_loadkeymap(exarg_T *eap); |
13121
3321582cae78
patch 8.0.1435: memory leak in test_arabic
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
14 void keymap_clear(garray_T *kmap); |
7 | 15 /* vim: set ft=c : */ |