# HG changeset patch # User Stefan Monnier # Date 987720297 0 # Node ID 3886350a8826745ac767712f3645a90c675e38fc # Parent 36711f1790e0d5c7453b47233fbcc10b9daec588 (easy-mmode-defsyntax): Unquote `doc'. diff -r 36711f1790e0 -r 3886350a8826 lisp/emacs-lisp/easy-mmode.el --- 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)))