From 882108c7b394f51289aa16030d1d73927f5fa5c3 Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Mon, 14 Nov 2005 18:28:49 +0000 Subject: [PATCH] (custom-make-dependencies): Reverse the list of found dependencies. --- lisp/ChangeLog | 8 ++++++++ lisp/cus-dep.el | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9d935a42979..8084a793269 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,11 @@ +2005-11-14 Juri Linkov + + * cus-edit.el (custom-variable-prompt): Set the default value arg + of completing-read. + + * cus-dep.el (custom-make-dependencies): Reverse the list of + found dependencies. + 2005-11-14 Dan Nicolaescu * menu-bar.el (menu-bar-options-menu): Delete "Syntax diff --git a/lisp/cus-dep.el b/lisp/cus-dep.el index 985a428384e..1b13a12698f 100644 --- a/lisp/cus-dep.el +++ b/lisp/cus-dep.el @@ -98,7 +98,7 @@ Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies DIRS" (when found (insert "(put '" (symbol-name symbol) " 'custom-loads '") - (prin1 found (current-buffer)) + (prin1 (nreverse found) (current-buffer)) (insert ")\n")))))) (insert "\ ;; These are for handling :version. We need to have a minimum of -- 2.39.2