From 8beb051325fd63d7d526e2e2917def6a7753e1f0 Mon Sep 17 00:00:00 2001 From: Noah Friedman Date: Mon, 9 Oct 1995 04:49:15 +0000 Subject: [PATCH] (mail-abbrev-syntax-table): Use `equal' instead of `=', in case elts of syntax table are lists, not integers. --- lisp/mail/mailabbrev.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2