(easy-mmode-defsyntax): Unquote `doc'.

This commit is contained in:
Stefan Monnier 2001-04-19 22:45:04 +00:00
parent d4f9443dc9
commit 2a83a11dc1
2 changed files with 7 additions and 8 deletions

View 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)))