diff options
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index 0c0d50a3ac9..e1cda3bbf73 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el @@ -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))) |