# HG changeset patch # User Miles Bader # Date 1023696288 0 # Node ID 93ebda6f1155d495763ce594e63512a2194efe9a # Parent 91b90aef166cd2681bcb723e3cc5d2085f5cbc3a (line-move-finish): Inhibit field motion when computing `line-end'. diff -r 91b90aef166c -r 93ebda6f1155 lisp/simple.el --- 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.