diff options
| author | Leo Liu | 2014-02-24 11:55:17 +0800 |
|---|---|---|
| committer | Leo Liu | 2014-02-24 11:55:17 +0800 |
| commit | 8ee4c296ecae9e354bc743fad0fd7f5a5e49e1a2 (patch) | |
| tree | 4d59fc8c96a20d3510e48887e4aafe130c582ac2 | |
| parent | 7d4bd627de08252c130f66858e486416878850e0 (diff) | |
| download | emacs-8ee4c296ecae9e354bc743fad0fd7f5a5e49e1a2.tar.gz emacs-8ee4c296ecae9e354bc743fad0fd7f5a5e49e1a2.zip | |
* emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 2 |
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 @@ | |||
| 1 | 2014-02-24 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec. | ||
| 4 | |||
| 1 | 2014-02-24 Juanma Barranquero <lekktu@gmail.com> | 5 | 2014-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 [¬ keywordp] sexp | 152 | [&optional [¬ keywordp] sexp |
| 153 | &optional [¬ keywordp] sexp | 153 | &optional [¬ keywordp] sexp |
| 154 | &optional [¬ keywordp] sexp] | 154 | &optional [¬ keywordp] sexp] |