(term-handle-ansi-escape): Fix off by one error.

This commit is contained in:
Dan Nicolaescu 2006-05-04 13:23:38 +00:00
parent 0c9512fecc
commit f5c0ef7bd4
2 changed files with 5 additions and 1 deletions

View file

@ -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)