diff lisp/simple.el @ 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 f749c4851f51
children 8da973b0df20
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.