]> git.eshelyaron.com Git - emacs.git/commitdiff
(mail-abbrev-syntax-table): Use `equal' instead of `=', in case elts
authorNoah Friedman <friedman@splode.com>
Mon, 9 Oct 1995 04:49:15 +0000 (04:49 +0000)
committerNoah Friedman <friedman@splode.com>
Mon, 9 Oct 1995 04:49:15 +0000 (04:49 +0000)
of syntax table are lists, not integers.

lisp/mail/mailabbrev.el

index 84debb0bd95629b1b9a4d7cbe6ca309877808628..4491e097af0f9e8b6faf89a2bb77025ebedc72af 100644 (file)
@@ -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