diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-11-30 12:16:38 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-11-30 12:16:38 +0000 |
commit | 1bb45f861c2e4411c35c17b283e5298a553bc93d (patch) | |
tree | a8644c871636fa9cbd7146262bcbae4b750bd79a /lisp/emulation/tpu-extras.el | |
parent | 88257bc85fdca15caa9f6af0285853ecea691958 (diff) | |
download | emacs-1bb45f861c2e4411c35c17b283e5298a553bc93d.tar.gz |
(tpu-forward-line): Use
forward-visible-line.
Diffstat (limited to 'lisp/emulation/tpu-extras.el')
-rw-r--r-- | lisp/emulation/tpu-extras.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emulation/tpu-extras.el b/lisp/emulation/tpu-extras.el index dc16fc80ad2..4422aebdbd5 100644 --- a/lisp/emulation/tpu-extras.el +++ b/lisp/emulation/tpu-extras.el @@ -1,6 +1,6 @@ ;;; tpu-extras.el --- Scroll margins and free cursor mode for TPU-edt -;; Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc. +;; Copyright (C) 1993, 1994, 1995, 2000 Free Software Foundation, Inc. ;; Author: Rob Riepel <riepel@networking.stanford.edu> ;; Maintainer: Rob Riepel <riepel@networking.stanford.edu> @@ -216,7 +216,7 @@ Accepts a prefix argument for the number of lines to move." (interactive "p") (let ((beg (tpu-current-line))) (backward-char 1) - (forward-line (- 1 num)) + (forward-visible-line (- 1 num)) (tpu-top-check beg num))) (defun tpu-next-end-of-line (num) |