aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo Liu2014-02-24 11:55:17 +0800
committerLeo Liu2014-02-24 11:55:17 +0800
commit8ee4c296ecae9e354bc743fad0fd7f5a5e49e1a2 (patch)
tree4d59fc8c96a20d3510e48887e4aafe130c582ac2
parent7d4bd627de08252c130f66858e486416878850e0 (diff)
downloademacs-8ee4c296ecae9e354bc743fad0fd7f5a5e49e1a2.tar.gz
emacs-8ee4c296ecae9e354bc743fad0fd7f5a5e49e1a2.zip
* emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/easy-mmode.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1e974b1525a..a7927fd092a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12014-02-24 Leo Liu <sdl.web@gmail.com>
2
3 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
4
12014-02-24 Juanma Barranquero <lekktu@gmail.com> 52014-02-24 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * apropos.el (apropos-print): Avoid formatting error when 7 * apropos.el (apropos-print): Avoid formatting error when
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el
index 2db629ea86c..b5b6566cf66 100644
--- a/lisp/emacs-lisp/easy-mmode.el
+++ b/lisp/emacs-lisp/easy-mmode.el
@@ -148,7 +148,7 @@ For example, you could write
148 :lighter \" Foo\" :require 'foo :global t :group 'hassle :version \"27.5\" 148 :lighter \" Foo\" :require 'foo :global t :group 'hassle :version \"27.5\"
149 ...BODY CODE...)" 149 ...BODY CODE...)"
150 (declare (doc-string 2) 150 (declare (doc-string 2)
151 (debug (&define name stringp 151 (debug (&define name string-or-null-p
152 [&optional [&not keywordp] sexp 152 [&optional [&not keywordp] sexp
153 &optional [&not keywordp] sexp 153 &optional [&not keywordp] sexp
154 &optional [&not keywordp] sexp] 154 &optional [&not keywordp] sexp]