From e4fe3460db9da857360fdc94cab70e904df2a582 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sun, 15 Oct 2000 05:25:57 +0000 Subject: [PATCH] (easy-mmode-define-syntax): Use plist-get and allow :inherit. --- lisp/emacs-lisp/easy-mmode.el | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index 60c613022e1..c2ff0701eb1 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el @@ -335,17 +335,23 @@ ARGS is a list of additional arguments." ;;; (defun easy-mmode-define-syntax (css args) - (let ((st (make-syntax-table (cadr (memq :copy args))))) + (let ((st (make-syntax-table (plist-get args :copy))) + (parent (plist-get args :inherit))) (dolist (cs css) (let ((char (car cs)) (syntax (cdr cs))) (if (sequencep char) (mapcar (lambda (c) (modify-syntax-entry c syntax st)) char) (modify-syntax-entry char syntax st)))) + (if parent (set-char-table-parent + st (if (symbolp parent) (symbol-value parent) parent))) st)) ;;;###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). +" `(progn (autoload 'easy-mmode-define-syntax "easy-mmode") (defconst ,st (easy-mmode-define-syntax ,css ,(cons 'list args)) doc))) -- 2.39.2