diff options
author | Glenn Morris <rgm@gnu.org> | 2013-05-13 09:21:00 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-05-13 09:21:00 -0700 |
commit | f4c7dfd2965eac2f8c6520db629aea79da5dd645 (patch) | |
tree | 4a13d34a71cad73f61281cf75d9df0a5278439ce /lisp/cus-dep.el | |
parent | 3766b7428c2af29f083eb93f627e9403fe0c0bff (diff) | |
download | emacs-f4c7dfd2965eac2f8c6520db629aea79da5dd645.tar.gz |
* cus-dep.el (defcustom-mh, defgroup-mh, defface-mh): Add compat aliases
as a hack workaround.
Fixes: debbugs:14384
Diffstat (limited to 'lisp/cus-dep.el')
-rw-r--r-- | lisp/cus-dep.el | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lisp/cus-dep.el b/lisp/cus-dep.el index 79698cc4b4a..12a3211a0b0 100644 --- a/lisp/cus-dep.el +++ b/lisp/cus-dep.el @@ -38,6 +38,18 @@ ldefs-boot\\|cus-load\\|finder-inf\\|esh-groups\\|subdirs\\)\\.el$\\)" (require 'autoload) +;; Hack workaround for bug#14384. +;; Define defcustom-mh as an alias for defcustom, etc. +;; Only do this in batch mode to avoid messing up a normal Emacs session. +;; Alternative would be to load mh-e when making cus-load. +;; (Would be better to split just the necessary parts of mh-e into a +;; separate file and only load that.) +(when (and noninteractive) + (mapc (lambda (e) (let ((sym (intern (format "%s-mh" e)))) + (or (fboundp sym) + (defalias sym e)))) + '(defcustom defface defgroup))) + (defun custom-make-dependencies () "Batch function to extract custom dependencies from .el files. Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies DIRS" @@ -82,6 +94,7 @@ Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies DIRS" (let ((expr (read (current-buffer)))) (condition-case nil (let ((custom-dont-initialize t)) + ;; Why do we need to eval just for the name? (eval expr) (put (nth 1 expr) 'custom-where name)) (error nil)))) |