From: Noah Friedman Date: Mon, 9 Oct 1995 04:49:15 +0000 (+0000) Subject: (mail-abbrev-syntax-table): Use `equal' instead of `=', in case elts X-Git-Tag: emacs-19.34~2699 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8beb051325fd63d7d526e2e2917def6a7753e1f0;p=emacs.git (mail-abbrev-syntax-table): Use `equal' instead of `=', in case elts of syntax table are lists, not integers. --- diff --git a/lisp/mail/mailabbrev.el b/lisp/mail/mailabbrev.el index 84debb0bd95..4491e097af0 100644 --- a/lisp/mail/mailabbrev.el +++ b/lisp/mail/mailabbrev.el @@ -372,7 +372,7 @@ non-address headers.") (_ (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