summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2001-04-19 22:45:04 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2001-04-19 22:45:04 +0000
commit2a83a11dc18627b89feceffe344bb90722d588ba (patch)
treed4709d0056c4302330fbc640cc0bad862edf84b9 /lisp
parentd4f9443dc9b4f5edb6180ae0d7c580ca7decea8e (diff)
downloademacs-2a83a11dc18627b89feceffe344bb90722d588ba.tar.gz
emacs-2a83a11dc18627b89feceffe344bb90722d588ba.tar.bz2
emacs-2a83a11dc18627b89feceffe344bb90722d588ba.zip
(easy-mmode-defsyntax): Unquote `doc'.
Diffstat (limited to 'lisp')
-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 @@
+2001-04-19 Stefan Monnier <monnier@cs.yale.edu>
+
+ * emacs-lisp/easy-mmode.el (easy-mmode-defsyntax): Unquote `doc'.
+
2001-04-18 Gerd Moellmann <gerd@gnu.org>
* emacs-lisp/cl-indent.el (toplevel): Comment out the spec
@@ -9,11 +13,7 @@
2001-04-18 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in (EMACSLOADPATH): Define.
- (custom-deps):
- (autoloads):
- (.el.elc):
- (compile-files-CMD):
- (compile-files-SH):
+ (custom-deps, autoloads, .el.elc, compile-files-CMD, compile-files-SH)
(recompile): Remove stuff to set EMACSLOADPATH.
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."
;;;###autoload
(defmacro easy-mmode-defsyntax (st css doc &rest args)
"Define variable ST as a syntax-table.
-CSS contains a list of syntax specifications of the form (CHAR . SYNTAX).
-"
+CSS contains a list of syntax specifications of the form (CHAR . SYNTAX)."
`(progn
(autoload 'easy-mmode-define-syntax "easy-mmode")
- (defconst ,st (easy-mmode-define-syntax ,css ,(cons 'list args)) doc)))
+ (defconst ,st (easy-mmode-define-syntax ,css ,(cons 'list args)) ,doc)))