From 2a83a11dc18627b89feceffe344bb90722d588ba Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Thu, 19 Apr 2001 22:45:04 +0000 Subject: [PATCH] (easy-mmode-defsyntax): Unquote `doc'. --- lisp/ChangeLog | 10 +++++----- lisp/emacs-lisp/easy-mmode.el | 5 ++--- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 30b857a213e..0e8294dcc19 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2001-04-19 Stefan Monnier + + * emacs-lisp/easy-mmode.el (easy-mmode-defsyntax): Unquote `doc'. + 2001-04-18 Gerd Moellmann * emacs-lisp/cl-indent.el (toplevel): Comment out the spec @@ -9,11 +13,7 @@ 2001-04-18 Andrew Innes * makefile.w32-in (EMACSLOADPATH): Define. - (custom-deps): - (autoloads): - (.el.elc): - (compile-files-CMD): - (compile-files-SH): + (custom-deps, autoloads, .el.elc, compile-files-CMD, compile-files-SH) (recompile): Remove stuff to set EMACSLOADPATH. 2001-04-18 Gerd Moellmann 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))) -- 2.39.2