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 | |
parent | 09d524014399810482bcc6268af18aaeb4de0cb5 (diff) | |
download | emacs-526af3b048006cf2c280cb5c96b9695ce42450b6.tar.gz |
(custom-make-dependencies): Simplify.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 2 | ||||
-rw-r--r-- | lisp/cus-dep.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8c38ef07b0a..7aeed1d185b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2007-05-25 Stefan Monnier <monnier@iro.umontreal.ca> + * cus-dep.el (custom-make-dependencies): Simplify. + * composite.el (compose-region, decompose-region): Use inhibit-read-only and restore-buffer-modified-p. 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 ") |