aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2002-09-20 03:44:38 +0000
committerRichard M. Stallman <[email protected]>2002-09-20 03:44:38 +0000
commit2912113bbdef96740a3b2fcee1724b99eb061dfd (patch)
tree7c2673708ffa6eaba06bcc20d82d8398ea48d36e
parent4986d1f19bfa64532a9e0c07be43f3c13c167687 (diff)
(custom-make-dependencies): Fix previous change.
-rw-r--r--lisp/cus-dep.el10
1 files changed, 1 insertions, 9 deletions
diff --git a/lisp/cus-dep.el b/lisp/cus-dep.el
index a73569203a..19ae727b2d 100644
--- a/lisp/cus-dep.el
+++ b/lisp/cus-dep.el
@@ -89,15 +89,7 @@ Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies DIRS"
;; So x and no-x builds won't differ.
(setq members
(sort (copy-sequence members)
- (lambda (x y)
- (cond ((and (stringp x) (stringp y))
- (string< x y))
- ;; Put all non-strings before strings.
- ((stringp y) t)
- ((stringp x) nil)
- ;; For two non-strings,
- ;; use the order they appear in MEMBERS.
- (t (member y (member x members)))))))
+ (lambda (x y) (string< (car x) (car y)))))
(while members
(setq item (car (car members))
members (cdr members)