diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-08-07 07:04:02 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-08-07 07:04:02 +0000 |
commit | 3bca7ca557f99e07c117874a2802e2d2434571a4 (patch) | |
tree | 01f2908e493b0243c041449e2b629d5141e61220 /lisp/term.el | |
parent | 6f7d57805b9785480a5eddbe96300423505be0d1 (diff) | |
download | emacs-3bca7ca557f99e07c117874a2802e2d2434571a4.tar.gz |
* term.el (term-handle-ansi-escape): Add comments with the
terminfo capabilities implemented.
* e/eterm-color.ti (msgr, u6, u7): New capabilities.
Diffstat (limited to 'lisp/term.el')
-rw-r--r-- | lisp/term.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/term.el b/lisp/term.el index 68a8e209558..4c2997cd3ba 100644 --- a/lisp/term.el +++ b/lisp/term.el @@ -3363,10 +3363,11 @@ See `term-prompt-regexp'." (term-handle-colors-array term-terminal-previous-parameter)) (term-handle-colors-array term-terminal-parameter)) - ;; \E[6n - Report cursor position + ;; \E[6n - Report cursor position (terminfo: u7) ((eq char ?n) (term-handle-deferred-scroll) (process-send-string proc + ;; (terminfo: u6) (format "\e[%s;%sR" (1+ (term-current-row)) (1+ (term-horizontal-column))))) |