# HG changeset patch # User Noah Friedman # Date 813214155 0 # Node ID 4056f3c1cbfc92cbdaa9daeb78722518f4868768 # Parent 1b2a4a45f0896ec6e62f7d39ee50ceebfc80a8b3 (mail-abbrev-syntax-table): Use `equal' instead of `=', in case elts of syntax table are lists, not integers. diff -r 1b2a4a45f089 -r 4056f3c1cbfc lisp/mail/mailabbrev.el --- a/lisp/mail/mailabbrev.el Mon Oct 09 03:11:29 1995 +0000 +++ b/lisp/mail/mailabbrev.el Mon Oct 09 04:49:15 1995 +0000 @@ -372,7 +372,7 @@ (_ (aref (standard-syntax-table) ?_)) (w (aref (standard-syntax-table) ?w))) (while (>= i 0) - (if (= (aref tab i) _) (aset tab i w)) + (if (equal (aref tab i) _) (aset tab i w)) (setq i (1- i))) tab) "The syntax-table used for abbrev-expansion purposes; this is not actually