]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bug in delete-indentation when region is inactive
authorStephen Leake <stephen_leake@stephe-leake.org>
Fri, 22 Mar 2019 23:14:50 +0000 (16:14 -0700)
committerStephen Leake <stephen_leake@stephe-leake.org>
Fri, 22 Mar 2019 23:14:50 +0000 (16:14 -0700)
* test/lisp/simple-tests.el: Add tests for delete-indentation.
(simple-delete-indentation-no-region): Works with no region.
(simple-delete-indentation-inactive-region): Was broken with inactive
region; now fixed.

* lisp/simple.el (delete-indentation): Check (use-region-p) before using BEG.

lisp/simple.el
test/lisp/simple-tests.el

index f52bd95bf847222f2cf55ee88ea9d7f94ae54bb7..f76f31ad14644921d1a9e44b6dd79e2c65436e47 100644 (file)
@@ -617,7 +617,8 @@ region is ignored if prefix argument is given.)"
                                          (+ (point) (length fill-prefix)))))
          (delete-region (point) (+ (point) (length fill-prefix))))
       (fixup-whitespace)
-      (if (and beg
+      (if (and (use-region-p)
+               beg
                (not arg)
               (< beg (point-at-bol)))
          (beginning-of-line)))))
index 08e81a7fefb4aeff285d7976b0216505f4297bb5..d9f059c8fc24f2b166bf96d6412d117bafa96775 100644 (file)
           (should (= x 0)))
       (remove-hook 'post-self-insert-hook inc))))
 
+\f
+;;; `delete-indentation'
+(ert-deftest simple-delete-indentation-no-region ()
+  "delete-indentation works when no mark is set."
+  ;; interactive \r returns nil for BEG END args
+  (unwind-protect
+      (with-temp-buffer
+        (insert (concat "zero line \n"
+                        "first line \n"
+                        "second line"))
+        (delete-indentation)
+        (should (string-equal
+                 (buffer-string)
+                 (concat "zero line \n"
+                         "first line second line")))
+        )))
+
+(ert-deftest simple-delete-indentation-inactive-region ()
+  "delete-indentation ignores inactive region."
+  ;; interactive \r returns non-nil for BEG END args
+  (unwind-protect
+      (with-temp-buffer
+        (insert (concat "zero line \n"
+                        "first line \n"
+                        "second line"))
+        (push-mark (point-min) t t)
+        (deactivate-mark)
+        (delete-indentation)
+        (should (string-equal
+                 (buffer-string)
+                 (concat "zero line \n"
+                         "first line second line")))
+        )))
+
 \f
 ;;; `delete-trailing-whitespace'
 (ert-deftest simple-delete-trailing-whitespace--bug-21766 ()