]> git.eshelyaron.com Git - emacs.git/commitdiff
(easy-mmode-defsyntax): Unquote `doc'.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 19 Apr 2001 22:45:04 +0000 (22:45 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 19 Apr 2001 22:45:04 +0000 (22:45 +0000)
lisp/ChangeLog
lisp/emacs-lisp/easy-mmode.el

index 30b857a213eaa1c2dd7423e08459efd42e1b666f..0e8294dcc1987e3e4c5e2f9be7536a74adfbc2b1 100644 (file)
@@ -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>
index 0c0d50a3ac95500f0bcdb48d8a34a135b9b56e69..e1cda3bbf737fb54fd9dca9a0a46b498611a0572 100644 (file)
@@ -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)))
 
 
 \f