changeset 13161:4056f3c1cbfc

(mail-abbrev-syntax-table): Use `equal' instead of `=', in case elts of syntax table are lists, not integers.
author Noah Friedman <friedman@splode.com>
date Mon, 09 Oct 1995 04:49:15 +0000
parents 1b2a4a45f089
children 74da6a581095
files lisp/mail/mailabbrev.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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