aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/simple.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/simple.el')
-rw-r--r--lisp/simple.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index f52bd95bf84..f76f31ad146 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -617,7 +617,8 @@ region is ignored if prefix argument is given.)"
617 (+ (point) (length fill-prefix))))) 617 (+ (point) (length fill-prefix)))))
618 (delete-region (point) (+ (point) (length fill-prefix)))) 618 (delete-region (point) (+ (point) (length fill-prefix))))
619 (fixup-whitespace) 619 (fixup-whitespace)
620 (if (and beg 620 (if (and (use-region-p)
621 beg
621 (not arg) 622 (not arg)
622 (< beg (point-at-bol))) 623 (< beg (point-at-bol)))
623 (beginning-of-line))))) 624 (beginning-of-line)))))