diff options
| author | Glenn Morris | 2012-03-31 13:22:04 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-03-31 13:22:04 -0700 |
| commit | 40f86458ccc6edbfd82c0b430fa24c627623321f (patch) | |
| tree | 23f8b818cfdf2bca7af9852d021e26c7696b825e /lisp | |
| parent | 7019c1775eea9cb100e97bceb3e8048e253c08fb (diff) | |
| download | emacs-40f86458ccc6edbfd82c0b430fa24c627623321f.tar.gz emacs-40f86458ccc6edbfd82c0b430fa24c627623321f.zip | |
Doc fix for xterm-extra-capabilities
* lisp/term/xterm.el (xterm-extra-capabilities): Doc fix.
* etc/PROBLEMS: Mention xterm-extra-capabilities issue.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/term/xterm.el | 12 |
2 files changed, 11 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c505241e4c6..b6d33739e2a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2012-03-31 Glenn Morris <rgm@gnu.org> | 1 | 2012-03-31 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * term/xterm.el (xterm-extra-capabilities): Doc fix. | ||
| 4 | |||
| 3 | * language/indian.el ("Devanagari"): Fix typo. (Bug#11103) | 5 | * language/indian.el ("Devanagari"): Fix typo. (Bug#11103) |
| 4 | 6 | ||
| 5 | * calendar/calendar.el (calendar-window-list) | 7 | * calendar/calendar.el (calendar-window-list) |
diff --git a/lisp/term/xterm.el b/lisp/term/xterm.el index eea6d767512..7e56cd9fa1d 100644 --- a/lisp/term/xterm.el +++ b/lisp/term/xterm.el | |||
| @@ -30,9 +30,15 @@ | |||
| 30 | :group 'emacs) | 30 | :group 'emacs) |
| 31 | 31 | ||
| 32 | (defcustom xterm-extra-capabilities 'check | 32 | (defcustom xterm-extra-capabilities 'check |
| 33 | "Set to a list if the XTerm supports modifyOtherKeys or | 33 | "Whether Xterm supports some additional, more modern, features. |
| 34 | reporting the background color. Set to 'check to check for those | 34 | If nil, just assume that it does not. |
| 35 | features. Set to nil to skip the checks." | 35 | If `check', try to check if it does. |
| 36 | If a list, assume that the listed features are supported, without checking. | ||
| 37 | |||
| 38 | The relevant features are: | ||
| 39 | modifyOtherKeys -- if supported, more key bindings work (e.g, \"\\C-,\") | ||
| 40 | reportBackground -- if supported, Xterm reports its background color | ||
| 41 | " | ||
| 36 | :version "24.1" | 42 | :version "24.1" |
| 37 | :group 'xterm | 43 | :group 'xterm |
| 38 | :type '(choice (const :tag "No" nil) | 44 | :type '(choice (const :tag "No" nil) |