diff options
author | Noam Postavsky <npostavs@gmail.com> | 2017-12-14 21:42:56 -0500 |
---|---|---|
committer | Noam Postavsky <npostavs@gmail.com> | 2018-01-07 20:21:46 -0500 |
commit | 918a052a422c05b5f78fd7c702eb6e3ee189fa18 (patch) | |
tree | 186cd17311bde7862947b7432674c89fd3e0418e /lisp/term/xterm.el | |
parent | 1dfc27576afe558da781b2d5f4845ca242dce3cc (diff) | |
download | emacs-918a052a422c05b5f78fd7c702eb6e3ee189fa18.tar.gz |
Query background for gnome terminal version 3.22 (Bug#29716)
* lisp/term/xterm.el (xterm--version-handler): Use
xterm--report-background-handler for terminals reporting minor version
4000 and above.
Diffstat (limited to 'lisp/term/xterm.el')
-rw-r--r-- | lisp/term/xterm.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/term/xterm.el b/lisp/term/xterm.el index 6f0d128b3d5..9209a76fcdc 100644 --- a/lisp/term/xterm.el +++ b/lisp/term/xterm.el @@ -670,8 +670,13 @@ Return the pasted text as a string." (when (and (> version 2000) (equal (match-string 1 str) "1")) ;; Hack attack! bug#16988: gnome-terminal reports "1;NNNN;0" ;; with a large NNNN but is based on a rather old xterm code. - ;; Gnome terminal 3.6.1 reports 1;3406;0 ;; Gnome terminal 2.32.1 reports 1;2802;0 + ;; Gnome terminal 3.6.1 reports 1;3406;0 + ;; Gnome terminal 3.22.2 reports 1;4601;0 and *does* support + ;; background color querying (Bug#29716). + (when (> version 4000) + (xterm--query "\e]11;?\e\\" + '(("\e]11;" . xterm--report-background-handler)))) (setq version 200)) (when (equal (match-string 1 str) "83") ;; `screen' (which returns 83;40003;0) seems to also lack support for |