diff options
| author | Stefan Monnier | 2001-04-19 22:45:04 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-04-19 22:45:04 +0000 |
| commit | 2a83a11dc18627b89feceffe344bb90722d588ba (patch) | |
| tree | d4709d0056c4302330fbc640cc0bad862edf84b9 | |
| parent | d4f9443dc9b4f5edb6180ae0d7c580ca7decea8e (diff) | |
| download | emacs-2a83a11dc18627b89feceffe344bb90722d588ba.tar.gz emacs-2a83a11dc18627b89feceffe344bb90722d588ba.zip | |
(easy-mmode-defsyntax): Unquote `doc'.
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 5 |
2 files changed, 7 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 30b857a213e..0e8294dcc19 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-04-19 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * emacs-lisp/easy-mmode.el (easy-mmode-defsyntax): Unquote `doc'. | ||
| 4 | |||
| 1 | 2001-04-18 Gerd Moellmann <gerd@gnu.org> | 5 | 2001-04-18 Gerd Moellmann <gerd@gnu.org> |
| 2 | 6 | ||
| 3 | * emacs-lisp/cl-indent.el (toplevel): Comment out the spec | 7 | * emacs-lisp/cl-indent.el (toplevel): Comment out the spec |
| @@ -9,11 +13,7 @@ | |||
| 9 | 2001-04-18 Andrew Innes <andrewi@gnu.org> | 13 | 2001-04-18 Andrew Innes <andrewi@gnu.org> |
| 10 | 14 | ||
| 11 | * makefile.w32-in (EMACSLOADPATH): Define. | 15 | * makefile.w32-in (EMACSLOADPATH): Define. |
| 12 | (custom-deps): | 16 | (custom-deps, autoloads, .el.elc, compile-files-CMD, compile-files-SH) |
| 13 | (autoloads): | ||
| 14 | (.el.elc): | ||
| 15 | (compile-files-CMD): | ||
| 16 | (compile-files-SH): | ||
| 17 | (recompile): Remove stuff to set EMACSLOADPATH. | 17 | (recompile): Remove stuff to set EMACSLOADPATH. |
| 18 | 18 | ||
| 19 | 2001-04-18 Gerd Moellmann <gerd@gnu.org> | 19 | 2001-04-18 Gerd Moellmann <gerd@gnu.org> |
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index 0c0d50a3ac9..e1cda3bbf73 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el | |||
| @@ -374,11 +374,10 @@ ARGS is a list of additional keyword arguments." | |||
| 374 | ;;;###autoload | 374 | ;;;###autoload |
| 375 | (defmacro easy-mmode-defsyntax (st css doc &rest args) | 375 | (defmacro easy-mmode-defsyntax (st css doc &rest args) |
| 376 | "Define variable ST as a syntax-table. | 376 | "Define variable ST as a syntax-table. |
| 377 | CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). | 377 | CSS contains a list of syntax specifications of the form (CHAR . SYNTAX)." |
| 378 | " | ||
| 379 | `(progn | 378 | `(progn |
| 380 | (autoload 'easy-mmode-define-syntax "easy-mmode") | 379 | (autoload 'easy-mmode-define-syntax "easy-mmode") |
| 381 | (defconst ,st (easy-mmode-define-syntax ,css ,(cons 'list args)) doc))) | 380 | (defconst ,st (easy-mmode-define-syntax ,css ,(cons 'list args)) ,doc))) |
| 382 | 381 | ||
| 383 | 382 | ||
| 384 | 383 | ||