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


From: Ikumi Keita
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. e769c3c79bee16108d4e791db34de969650cadb4
Date: Fri, 29 Dec 2017 09:06:32 -0500 (EST)

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  e769c3c79bee16108d4e791db34de969650cadb4 (commit)
      from  4106f923fb392992d70f72dc4e4e869ff30c786f (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 e769c3c79bee16108d4e791db34de969650cadb4
Author: Ikumi Keita <address@hidden>
Date:   Fri Dec 29 23:00:36 2017 +0900

    Make sure `process-environment' is recovered after temporal setenv
    
    * preview.el.in (TeX-inline-preview-internal): Since `setenv' operates
    destructively on `process-environment', use `copy-sequence' for
    maximal safety in order to guard its list structure.

diff --git a/preview.el.in b/preview.el.in
index c6ff3db..f4dfa4e 100644
--- a/preview.el.in
+++ b/preview.el.in
@@ -3529,7 +3529,7 @@ internal parameters, STR may be a log to insert into the 
current log."
       ((preview-format-name (shell-quote-argument
                             (preview-dump-file-name
                              (file-name-nondirectory master))))
-       (process-environment process-environment)
+       (process-environment (copy-sequence process-environment))
        (process
        (progn
          ;; Fix Bug#20773, Bug#27088.

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

Summary of changes:
 preview.el.in | 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]