aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
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 3a380d459f..9ebf971f15 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2009-08-07 Dan Nicolaescu <[email protected]>
+
+ * term.el (term-handle-ansi-escape): Add comments with the
+ terminfo capabilities implemented.
+
2009-08-06 Dmitry Dzhus <[email protected]>
* progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
diff --git a/lisp/term.el b/lisp/term.el
index 68a8e20955..4c2997cd3b 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)))))