diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-05-25 16:16:17 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-05-25 16:16:17 +0000 |
commit | 526af3b048006cf2c280cb5c96b9695ce42450b6 (patch) | |
tree | 773b81c068b6fbe9cf66a4f5c5d174eac5aac947 /lisp/cus-dep.el | |
parent | 09d524014399810482bcc6268af18aaeb4de0cb5 (diff) | |
download | emacs-526af3b048006cf2c280cb5c96b9695ce42450b6.tar.gz |
(custom-make-dependencies): Simplify.
Diffstat (limited to 'lisp/cus-dep.el')
-rw-r--r-- | lisp/cus-dep.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cus-dep.el b/lisp/cus-dep.el index 713b84f8bc0..98af13cec69 100644 --- a/lisp/cus-dep.el +++ b/lisp/cus-dep.el @@ -141,7 +141,7 @@ Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies DIRS" (member where (cdr (assoc version version-alist))) (push where (cdr (assoc version version-alist)))) - (push (cons version (list where)) version-alist))) + (push (list version where) version-alist))) ;; This is a group (insert "(custom-put-if-not '" (symbol-name symbol) " 'custom-version ") |