# HG changeset patch # User Richard M. Stallman # Date 1032493478 0 # Node ID 5a735e0d66d4b46a528cb3b287b28f3afd50fd01 # Parent 6ac4f3375d60da1b680ddc0aedb3a2d36e38ffd0 (custom-make-dependencies): Fix previous change. diff -r 6ac4f3375d60 -r 5a735e0d66d4 lisp/cus-dep.el --- a/lisp/cus-dep.el Thu Sep 19 18:57:55 2002 +0000 +++ b/lisp/cus-dep.el Fri Sep 20 03:44:38 2002 +0000 @@ -89,15 +89,7 @@ ;; 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)