# HG changeset patch # User Andreas Schwab # Date 1026596405 0 # Node ID ff0c68e547f7d3c92dc9b4a3ca955a7091e8524b # Parent c6a6286bc21ac0bc9ff9bfe3865e9e601b15a26e (mail-abbrev-make-syntax-table): Check the inherited table entry. diff -r c6a6286bc21a -r ff0c68e547f7 lisp/mail/mailabbrev.el --- a/lisp/mail/mailabbrev.el Sat Jul 13 20:17:00 2002 +0000 +++ b/lisp/mail/mailabbrev.el Sat Jul 13 21:40:05 2002 +0000 @@ -413,6 +413,9 @@ (w (aref (standard-syntax-table) ?w))) (map-char-table (function (lambda (key value) + (if (null value) + ;; Fetch the inherited value + (setq value (aref tab key))) (if (equal value _) (set-char-table-range tab key w)))) tab)