mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-04 11:40:22 +00:00
(term-handle-ansi-escape): Fix off by one error.
This commit is contained in:
parent
0c9512fecc
commit
f5c0ef7bd4
@ -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…
Reference in New Issue
Block a user