diff options
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/cus-dep.el | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9d935a42979..8084a793269 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2005-11-14 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * cus-edit.el (custom-variable-prompt): Set the default value arg | ||
| 4 | of completing-read. | ||
| 5 | |||
| 6 | * cus-dep.el (custom-make-dependencies): Reverse the list of | ||
| 7 | found dependencies. | ||
| 8 | |||
| 1 | 2005-11-14 Dan Nicolaescu <dann@ics.uci.edu> | 9 | 2005-11-14 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 10 | ||
| 3 | * menu-bar.el (menu-bar-options-menu): Delete "Syntax | 11 | * 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" | |||
| 98 | (when found | 98 | (when found |
| 99 | (insert "(put '" (symbol-name symbol) | 99 | (insert "(put '" (symbol-name symbol) |
| 100 | " 'custom-loads '") | 100 | " 'custom-loads '") |
| 101 | (prin1 found (current-buffer)) | 101 | (prin1 (nreverse found) (current-buffer)) |
| 102 | (insert ")\n")))))) | 102 | (insert ")\n")))))) |
| 103 | (insert "\ | 103 | (insert "\ |
| 104 | ;; These are for handling :version. We need to have a minimum of | 104 | ;; These are for handling :version. We need to have a minimum of |