aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2001-04-19 22:45:04 +0000
committerStefan Monnier2001-04-19 22:45:04 +0000
commit2a83a11dc18627b89feceffe344bb90722d588ba (patch)
treed4709d0056c4302330fbc640cc0bad862edf84b9
parentd4f9443dc9b4f5edb6180ae0d7c580ca7decea8e (diff)
downloademacs-2a83a11dc18627b89feceffe344bb90722d588ba.tar.gz
emacs-2a83a11dc18627b89feceffe344bb90722d588ba.zip
(easy-mmode-defsyntax): Unquote `doc'.
-rw-r--r--lisp/ChangeLog10
-rw-r--r--lisp/emacs-lisp/easy-mmode.el5
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 @@
12001-04-19 Stefan Monnier <monnier@cs.yale.edu>
2
3 * emacs-lisp/easy-mmode.el (easy-mmode-defsyntax): Unquote `doc'.
4
12001-04-18 Gerd Moellmann <gerd@gnu.org> 52001-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 @@
92001-04-18 Andrew Innes <andrewi@gnu.org> 132001-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
192001-04-18 Gerd Moellmann <gerd@gnu.org> 192001-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.
377CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). 377CSS 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