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. a9440770f0a935769b46b


From: Ikumi Keita
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. a9440770f0a935769b46bf08e7e8b936733b6eab
Date: Fri, 1 Sep 2017 02:05:12 -0400 (EDT)

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  a9440770f0a935769b46bf08e7e8b936733b6eab (commit)
      from  01224b600d1ac47d787b2adfd88071b2a6a5f781 (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 a9440770f0a935769b46bf08e7e8b936733b6eab
Author: Ikumi Keita <address@hidden>
Date:   Thu Aug 31 23:39:35 2017 +0900

    Use `delete' correctly for list variable
    
    * tex.el (TeX-search-files-kpathsea): Make sure that "." will be
    removed from the directory list even if "." is the first element of
    the list, when the SCOPE argument is `global'.

diff --git a/tex.el b/tex.el
index 8083fa0..79b59b8 100644
--- a/tex.el
+++ b/tex.el
@@ -4580,7 +4580,7 @@ non-nil, remove file extension."
                                                TeX-kpathsea-path-delimiter
                                                "]+")))))
           (if (eq scope 'global)
-              (delete "." dirs))
+              (setq dirs (delete "." dirs)))
           (setq extensions (concat "\\." (regexp-opt extensions t) "\\'")
                 result (apply #'append (mapcar (lambda (x)
                                                  (when (file-readable-p x)

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

Summary of changes:
 tex.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

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