1
0
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:
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

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

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)