summaryrefslogtreecommitdiff
path: root/lisp/uniquify.el
diff options
context:
space:
mode:
authorFrancesco Potortì <pot@gnu.org>2001-06-27 17:48:40 +0000
committerFrancesco Potortì <pot@gnu.org>2001-06-27 17:48:40 +0000
commit629d08c0939b7849cfd21e08ba8269f72befde85 (patch)
tree54c9c589bc9746251392134dc22758d7e171300d /lisp/uniquify.el
parentaee2fc77536adf31a657e9ec08459a817f4381d7 (diff)
downloademacs-629d08c0939b7849cfd21e08ba8269f72befde85.tar.gz
(uniquify-rationalize-file-buffer-names): Undo previous change.
Diffstat (limited to 'lisp/uniquify.el')
-rw-r--r--lisp/uniquify.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/uniquify.el b/lisp/uniquify.el
index 2f02236122f..20291d55b82 100644
--- a/lisp/uniquify.el
+++ b/lisp/uniquify.el
@@ -223,9 +223,8 @@ file name elements. Arguments cause only a subset of buffers to be renamed."
(setq buffers (cdr buffers))))
;; selects buffers whose names may need changing, and others that
;; may conflict.
- (setq fix-list (sort
- (sort fix-list 'string-lessp) ;do a quick pre-ordering
- 'uniquify-fix-item-filename-lessp))
+ (setq fix-list
+ (sort fix-list 'uniquify-fix-item-filename-lessp))
;; bringing conflicting names together
(uniquify-rationalize-a-list fix-list uniquify-min-dir-content)
(mapcar 'uniquify-fix-item-unrationalized-buffer fix-list)))