auctex-diffs
[Top][All Lists]
Advanced

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

[AUCTeX-diffs] GNU AUCTeX branch, master, updated. 00430f2ea9ef010a0a765


From: Mosè Giordano
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. 00430f2ea9ef010a0a7651fa2077717128e6b8f8
Date: Tue, 29 Mar 2016 22:26:57 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU AUCTeX".

The branch, master has been updated
       via  00430f2ea9ef010a0a7651fa2077717128e6b8f8 (commit)
      from  eddf3ff7b07603f5a23a414cfc6fc4b8a77f3b3c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 00430f2ea9ef010a0a7651fa2077717128e6b8f8
Author: Mosè Giordano <address@hidden>
Date:   Wed Mar 30 00:25:34 2016 +0200

    Restore compatibility with XEmacs
    
    * tex-buf.el (TeX-format-filter): Use `memq' in place of `memql'.  This
      one is not available in XEmacs.

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

-----------------------------------------------------------------------

Summary of changes:
 tex-buf.el |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

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