branch: elpa
commit 00430f2ea9ef010a0a7651fa2077717128e6b8f8
Author: Mosè Giordano <m...@gnu.org>
Commit: Mosè Giordano <m...@gnu.org>

    Restore compatibility with XEmacs
    
    * tex-buf.el (TeX-format-filter): Use `memq' in place of `memql'.  This
      one is not available in XEmacs.
---
 tex-buf.el |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tex-buf.el b/tex-buf.el
index d65b62c..0d459cf 100644
--- a/tex-buf.el
+++ b/tex-buf.el
@@ -1767,7 +1767,7 @@ command."
        ;; Remove line breaks at columns 79 and 80
        (while (> (point) pt)
          (end-of-line 0)
-         (when (and (memql (- (point) (line-beginning-position)) '(79 80))
+         (when (and (memq (- (point) (line-beginning-position)) '(79 80))
                     ;; Heuristic: Don't delete the linebreak if the next line
                     ;; is empty or starts with an opening parenthesis, or if
                     ;; point is located after a period and in the next line no

Reply via email to