Mercurial > emacs
changeset 45730:93ebda6f1155
(line-move-finish): Inhibit field motion when computing `line-end'.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Mon, 10 Jun 2002 08:04:48 +0000 |
parents | 91b90aef166c |
children | 1bc9d2131726 |
files | lisp/simple.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/simple.el Mon Jun 10 06:30:41 2002 +0000 +++ b/lisp/simple.el Mon Jun 10 08:04:48 2002 +0000 @@ -2668,7 +2668,8 @@ (line-end ;; Compute the end of the line ;; ignoring effectively intangible newlines. - (let ((inhibit-point-motion-hooks nil)) + (let ((inhibit-point-motion-hooks nil) + (inhibit-field-text-motion t)) (save-excursion (end-of-line) (point))))) ;; Move to the desired column.