mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-07 06:22:32 -08:00
(term-handle-ansi-escape): Fix off by one error.
This commit is contained in:
parent
0c9512fecc
commit
f5c0ef7bd4
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2006-05-04 Dan Nicolaescu <dann@ics.uci.edu>
|
||||
|
||||
* term.el (term-handle-ansi-escape): Fix off by one error.
|
||||
|
||||
2006-05-04 Nick Roberts <nickrob@snap.net.nz>
|
||||
|
||||
* progmodes/gdb-ui.el (gdb-force-update): Delete variable...
|
||||
|
|
|
|||
|
|
@ -3320,7 +3320,7 @@ See `term-prompt-regexp'."
|
|||
((eq char ?r)
|
||||
(term-set-scroll-region
|
||||
(1- term-terminal-previous-parameter)
|
||||
term-terminal-parameter))
|
||||
(1- term-terminal-parameter)))
|
||||
(t)))
|
||||
|
||||
(defun term-set-scroll-region (top bottom)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue