aboutsummaryrefslogtreecommitdiffstats
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
parent938004b3c1a93d44d358981452635c256d1a5b37 (diff)
downloademacs-f436b1cbdb10edea957c83959abe0988535b985a.tar.gz
emacs-f436b1cbdb10edea957c83959abe0988535b985a.zip
(mail-abbrev-make-syntax-table): Use (syntax-table), not old-syntax-table.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/mail/mailabbrev.el2
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 962a6cb058e..278bc50968b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12002-04-04 Richard M. Stallman <rms@gnu.org>
2
3 * mail/mailabbrev.el (mail-abbrev-make-syntax-table):
4 Use (syntax-table), not old-syntax-table.
5
6 * enriched.el (enriched-decode-foreground)
7 (enriched-decode-background): Don't call facemenu-get-face.
8
12002-04-04 Mike Williams <mdub@bigfoot.com> 92002-04-04 Mike Williams <mdub@bigfoot.com>
2 10
3 * textmodes/sgml-mode.el: Add missing require. 11 * textmodes/sgml-mode.el: Add missing require.
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