emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] elpa 00430f2 21/23: Restore compatibility with XEmacs


From: Tassilo Horn
Subject: [elpa] elpa 00430f2 21/23: Restore compatibility with XEmacs
Date: Wed, 30 Mar 2016 19:08:03 +0000

branch: elpa
commit 00430f2ea9ef010a0a7651fa2077717128e6b8f8
Author: Mosè Giordano <address@hidden>
Commit: Mosè Giordano <address@hidden>

    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

[Prev in Thread] Current Thread [Next in Thread]