]> git.eshelyaron.com Git - emacs.git/commitdiff
(calc-write-parse-table-part, calc-fix-token-name): Fix a check for
authorJay Belanger <jay.p.belanger@gmail.com>
Tue, 8 Feb 2005 05:03:07 +0000 (05:03 +0000)
committerJay Belanger <jay.p.belanger@gmail.com>
Tue, 8 Feb 2005 05:03:07 +0000 (05:03 +0000)
language type.

lisp/calc/calc-prog.el

index d5d9123d04d7f2873eb421ddb5bf1653afa01ff7..640fa5b665cfe1e3197cfe5975e97d6cb1abbb83 100644 (file)
     (cond ((stringp (car p))
           (let ((s (car p)))
             (if (and (string-match "\\`\\\\dots\\>" s)
-                     (not (eq calc-lang '(tex latex))))
+                     (not (memq calc-lang '(tex latex))))
                 (setq s (concat ".." (substring s 5))))
             (if (or (and (string-match
                           "[a-zA-Z0-9\"{}]\\|\\`:=\\'\\|\\`#\\|\\`%%" s)
         "(")
        ((and (equal name "}") (memq calc-lang '(tex latex eqn)))
         ")")
-       ((and (equal name "&") (eq calc-lang '(tex latex)))
+       ((and (equal name "&") (memq calc-lang '(tex latex)))
         ",")
        ((equal name "#")
         (search-backward "#")