]> git.eshelyaron.com Git - emacs.git/commitdiff
Unbreak 'reverse-region'
authorRichard Copley <rcopley@gmail.com>
Thu, 18 Jun 2020 17:59:21 +0000 (18:59 +0100)
committerEli Zaretskii <eliz@gnu.org>
Mon, 22 Jun 2020 15:40:37 +0000 (18:40 +0300)
* lisp/sort.el (reverse-region): Unbreak the function.  It was
broken by a fix for bug#39376.

Copyright-paperwork-exempt: yes

lisp/sort.el

index de0e1b9519d2da38f37c4aa4100634adb8c19875..f878db24a3c301fa77d4ee1e5d5b5def5ff92ac0 100644 (file)
@@ -554,9 +554,6 @@ is the one that ends before END."
   (if (> beg end)
       (let (mid) (setq mid end end beg beg mid)))
   (save-excursion
-    (when (or (< (line-beginning-position) beg)
-              (< end (line-end-position)))
-      (user-error "There are no full lines in the region"))
     ;; Put beg at the start of a line and end and the end of one --
     ;; the largest possible region which fits this criteria.
     (goto-char beg)
@@ -568,6 +565,8 @@ is the one that ends before END."
     ;; reversal; it isn't difficult to add it afterward.
     (or (and (eolp) (not (bolp))) (progn (forward-line -1) (end-of-line)))
     (setq end (point-marker))
+    (when (<= end beg)
+      (user-error "There are no full lines in the region"))
     ;; The real work.  This thing cranks through memory on large regions.
     (let (ll (do t))
       (while do