diff options
author | Miles Bader <miles@gnu.org> | 2002-06-10 08:05:13 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2002-06-10 08:05:13 +0000 |
commit | 85fd1cfa83bfff596fabab6d26fd6207c158d858 (patch) | |
tree | 21964501642db95a13cc157ff83c13d9d834f819 /lisp/simple.el | |
parent | 0415fedcd5591881f3646bae868ca24287a530e8 (diff) | |
download | emacs-85fd1cfa83bfff596fabab6d26fd6207c158d858.tar.gz |
(line-move-finish): Inhibit field motion when computing `line-end'.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 6ae43f63770..9f01cef9f66 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2668,7 +2668,8 @@ Outline mode sets this." (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. |