diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-04-26 20:59:29 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-04-26 20:59:29 +0200 |
commit | ab3022196ea4f1496e79b8ee85996e31c45d02f1 (patch) | |
tree | c9d57bbbf6bd04b868aedda4b36f54be119339bd /src/proto/term.pro | |
parent | 674127e1801fd02ff07dddf0dc3bf0d8cce68997 (diff) | |
download | vim-ab3022196ea4f1496e79b8ee85996e31c45d02f1.zip |
patch 7.4.1792
Problem: Color name decoding is implemented several times.
Solution: Move it to term.c. (Christian Brabandt)
Diffstat (limited to 'src/proto/term.pro')
-rw-r--r-- | src/proto/term.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/term.pro b/src/proto/term.pro index cd2ca26d3..398451544 100644 --- a/src/proto/term.pro +++ b/src/proto/term.pro @@ -65,4 +65,5 @@ void show_termcodes(void); int show_one_termcode(char_u *name, char_u *code, int printit); char_u *translate_mapping(char_u *str, int expmap); void update_tcap(int attr); +guicolor_T gui_get_color_cmn(char_u *name); /* vim: set ft=c : */ |