aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/custom.el
diff options
context:
space:
mode:
authorStefan Monnier2012-05-17 21:46:20 -0400
committerStefan Monnier2012-05-17 21:46:20 -0400
commitb581bb5c8ac2aed4a610097aaaca4a8d354fe9b4 (patch)
tree3fac722bbeb0fdf55dc40e414732a3867f29c9e1 /lisp/custom.el
parent70b8ef8f7855b9983d17731acad2fdfb4fb2a5be (diff)
downloademacs-b581bb5c8ac2aed4a610097aaaca4a8d354fe9b4.tar.gz
emacs-b581bb5c8ac2aed4a610097aaaca4a8d354fe9b4.zip
* lisp/emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
their respective macro declarations. * lisp/skeleton.el (define-skeleton): * lisp/progmodes/compile.el (define-compilation-mode): * lisp/ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op) (define-ibuffer-filter): * lisp/emacs-lisp/generic.el (define-generic-mode): * lisp/emacs-lisp/easy-mmode.el (define-minor-mode) (define-globalized-minor-mode): * lisp/emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype): * lisp/emacs-lisp/byte-run.el (defsubst): * lisp/custom.el (deftheme): Add doc-string metadata.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r--lisp/custom.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/custom.el b/lisp/custom.el
index d0eadcc23ff..50481f2aa7f 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -1048,6 +1048,7 @@ The optional argument DOC is a doc string describing the theme.
1048 1048
1049Any theme `foo' should be defined in a file called `foo-theme.el'; 1049Any theme `foo' should be defined in a file called `foo-theme.el';
1050see `custom-make-theme-feature' for more information." 1050see `custom-make-theme-feature' for more information."
1051 (declare (doc-string 2))
1051 (let ((feature (custom-make-theme-feature theme))) 1052 (let ((feature (custom-make-theme-feature theme)))
1052 ;; It is better not to use backquote in this file, 1053 ;; It is better not to use backquote in this file,
1053 ;; because that makes a bootstrapping problem 1054 ;; because that makes a bootstrapping problem