diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-06-25 17:03:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-06-25 17:03:36 +0200 |
commit | b5c3265521749fda81ae4b052de35a0d1209cf50 (patch) | |
tree | c4e09817745505a3e66db6f65a72fa5cf63f4708 /src/proto | |
parent | 367fbf17dad7bfb65cef8a4a18147989516218f2 (diff) | |
download | vim-git-b5c3265521749fda81ae4b052de35a0d1209cf50.tar.gz |
patch 7.4.757v7.4.757
Problem: Cannot detect the background color of a terminal.
Solution: Add T_RBG to request the background color if possible. (Lubomir
Rintel)
Diffstat (limited to 'src/proto')
-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 b3d0df39d..f0c2a01f4 100644 --- a/src/proto/term.pro +++ b/src/proto/term.pro @@ -36,6 +36,7 @@ void starttermcap __ARGS((void)); void stoptermcap __ARGS((void)); void may_req_termresponse __ARGS((void)); void may_req_ambiguous_char_width __ARGS((void)); +void may_req_bg_color __ARGS((void)); int swapping_screen __ARGS((void)); void setmouse __ARGS((void)); int mouse_has __ARGS((int c)); |