summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2009-08-07 07:04:02 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2009-08-07 07:04:02 +0000
commit3bca7ca557f99e07c117874a2802e2d2434571a4 (patch)
tree01f2908e493b0243c041449e2b629d5141e61220 /lisp
parent6f7d57805b9785480a5eddbe96300423505be0d1 (diff)
downloademacs-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')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/term.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3a380d459ff..9ebf971f15f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
+
+ * term.el (term-handle-ansi-escape): Add comments with the
+ terminfo capabilities implemented.
+
2009-08-06 Dmitry Dzhus <dima@sphinx.net.ru>
* progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
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)))))