diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2006-05-04 13:23:38 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2006-05-04 13:23:38 +0000 |
commit | f5c0ef7bd47ea9bfd01da6039c0a18c896c4e796 (patch) | |
tree | 0c43a6a3a2009c5ff36b107351777c4bec9cb98e /lisp/term.el | |
parent | 0c9512fecc708886ca19ff52b1022c86170fc613 (diff) | |
download | emacs-f5c0ef7bd47ea9bfd01da6039c0a18c896c4e796.tar.gz |
(term-handle-ansi-escape): Fix off by one error.
Diffstat (limited to 'lisp/term.el')
-rw-r--r-- | lisp/term.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/term.el b/lisp/term.el index be4aefaba72..a03970a368b 100644 --- a/lisp/term.el +++ b/lisp/term.el @@ -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) |