summaryrefslogtreecommitdiff
path: root/lisp/sort.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2022-05-03 21:23:40 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-05-03 21:23:40 +0200
commit5206596ea7b26e2e9705e4c94184f6d22687c385 (patch)
treee45f62e8d0daf1411ebd732f8fa4601f6eeb3f3b /lisp/sort.el
parent59353ec7b579213de3c70950d5d938b7540ce72f (diff)
downloademacs-5206596ea7b26e2e9705e4c94184f6d22687c385.tar.gz
emacs-5206596ea7b26e2e9705e4c94184f6d22687c385.tar.bz2
emacs-5206596ea7b26e2e9705e4c94184f6d22687c385.zip
Make sorting not change buffer modification status always
* lisp/sort.el (sort-subr): Don't mark buffer modified if the sorting didn't change anything (bug#4587).
Diffstat (limited to 'lisp/sort.el')
-rw-r--r--lisp/sort.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/sort.el b/lisp/sort.el
index 90eee01caf4..d04f075abd1 100644
--- a/lisp/sort.el
+++ b/lisp/sort.el
@@ -29,6 +29,8 @@
;;; Code:
+(eval-when-compile (require 'subr-x))
+
(defgroup sort nil
"Commands to sort text in an Emacs buffer."
:group 'data)
@@ -111,7 +113,8 @@ as start and end positions), and with `string<' otherwise."
(lambda (a b) (string< (car a) (car b)))))))
(if reverse (setq sort-lists (nreverse sort-lists)))
(if messages (message "Reordering buffer..."))
- (sort-reorder-buffer sort-lists old)))
+ (with-buffer-unmodified-if-unchanged
+ (sort-reorder-buffer sort-lists old))))
(if messages (message "Reordering buffer... Done"))))
nil)