2002-06-10 Miles Bader <miles@gnu.org>
+ * simple.el (line-move-finish): Inhibit field motion when
+ computing `line-end'.
+
* files.el (revert-buffer): Correct typo: variable name is
`buffer-file-format', not `buffer-file-formats'.
(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.