diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-04-04 20:50:15 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-04-04 20:50:15 +0000 |
commit | f436b1cbdb10edea957c83959abe0988535b985a (patch) | |
tree | a6cd4b37636389e91747918963b04ab354edc55a /lisp/mail/mailabbrev.el | |
parent | 938004b3c1a93d44d358981452635c256d1a5b37 (diff) | |
download | emacs-f436b1cbdb10edea957c83959abe0988535b985a.tar.gz |
(mail-abbrev-make-syntax-table): Use (syntax-table), not old-syntax-table.
Diffstat (limited to 'lisp/mail/mailabbrev.el')
-rw-r--r-- | lisp/mail/mailabbrev.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/mailabbrev.el b/lisp/mail/mailabbrev.el index 86201cf0d2a..493e508f145 100644 --- a/lisp/mail/mailabbrev.el +++ b/lisp/mail/mailabbrev.el @@ -408,7 +408,7 @@ of a mail alias. The value is set up, buffer-local, when first needed.") (defun mail-abbrev-make-syntax-table () (make-local-variable 'mail-abbrev-syntax-table) (unless mail-abbrev-syntax-table - (let ((tab (copy-syntax-table old-syntax-table)) + (let ((tab (copy-syntax-table (syntax-table))) (_ (aref (standard-syntax-table) ?_)) (w (aref (standard-syntax-table) ?w))) (map-char-table |