aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mail
diff options
context:
space:
mode:
authorRichard M. Stallman2002-04-04 20:50:15 +0000
committerRichard M. Stallman2002-04-04 20:50:15 +0000
commitf436b1cbdb10edea957c83959abe0988535b985a (patch)
treea6cd4b37636389e91747918963b04ab354edc55a /lisp/mail
parent938004b3c1a93d44d358981452635c256d1a5b37 (diff)
downloademacs-f436b1cbdb10edea957c83959abe0988535b985a.tar.gz
emacs-f436b1cbdb10edea957c83959abe0988535b985a.zip
(mail-abbrev-make-syntax-table): Use (syntax-table), not old-syntax-table.
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/mailabbrev.el2
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.")
408(defun mail-abbrev-make-syntax-table () 408(defun mail-abbrev-make-syntax-table ()
409 (make-local-variable 'mail-abbrev-syntax-table) 409 (make-local-variable 'mail-abbrev-syntax-table)
410 (unless mail-abbrev-syntax-table 410 (unless mail-abbrev-syntax-table
411 (let ((tab (copy-syntax-table old-syntax-table)) 411 (let ((tab (copy-syntax-table (syntax-table)))
412 (_ (aref (standard-syntax-table) ?_)) 412 (_ (aref (standard-syntax-table) ?_))
413 (w (aref (standard-syntax-table) ?w))) 413 (w (aref (standard-syntax-table) ?w)))
414 (map-char-table 414 (map-char-table