changeset 37406:3886350a8826

(easy-mmode-defsyntax): Unquote `doc'.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 19 Apr 2001 22:44:57 +0000
parents 36711f1790e0
children c8fb52b4feff
files lisp/emacs-lisp/easy-mmode.el
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
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)))