diff options
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 51887986f60..3a373bada39 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2590,8 +2590,8 @@ Outline mode sets this." ;; with intangibility and point-motion hooks enabled this time. (goto-char opoint) (setq inhibit-point-motion-hooks nil) - (goto-char (constrain-to-field new opoint nil t - 'inhibit-line-move-field-capture)) + (goto-char + (constrain-to-field new opoint t t 'inhibit-line-move-field-capture)) ;; If intangibility processing moved us to a different line, ;; readjust the horizontal position within the line we ended up at. (when (or (< (point) line-beg) (> (point) line-end)) @@ -2606,8 +2606,8 @@ Outline mode sets this." (setq new (point))) (goto-char (point-min)) (setq inhibit-point-motion-hooks nil) - (goto-char (constrain-to-field new opoint nil t - 'inhibit-line-move-field-capture)) + (goto-char + (constrain-to-field new opoint t t 'inhibit-line-move-field-capture)) ))) nil) |