diff lisp/emacs-lisp/easy-mmode.el @ 37406:3886350a8826

(easy-mmode-defsyntax): Unquote `doc'.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 19 Apr 2001 22:44:57 +0000
parents 6b8b7796f28b
children ce45998cedf2
line wrap: on
line diff
--- a/lisp/emacs-lisp/easy-mmode.el	Thu Apr 19 16:49:16 2001 +0000
+++ b/lisp/emacs-lisp/easy-mmode.el	Thu Apr 19 22:44:57 2001 +0000
@@ -374,11 +374,10 @@
 ;;;###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)))