From fd97770325a6485cbabb7d728904f3d33534c0b7 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 11 Oct 1996 03:11:00 +0000 Subject: [PATCH] (newline): Use buffer-has-markers-at. --- lisp/simple.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/simple.el b/lisp/simple.el index 5f45ded7224..42d5a79abf2 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -39,6 +39,8 @@ In Auto Fill mode, if no numeric arg, break the preceding line if it's long." ;; the end of the previous line. (let ((flag (and (not (bobp)) (bolp) + ;; Make sure there are no markers here. + (not (buffer-has-markers-at (1- (point)))) ;; Make sure the newline before point isn't intangible. (not (get-char-property (1- (point)) 'intangible)) ;; Make sure the newline before point isn't read-only. -- 2.39.5