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


From: Mosè Giordano
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. a9820d3b147bac2214375ddbe644186f9f1ed3ed
Date: Sat, 22 Feb 2014 13:24:21 +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  a9820d3b147bac2214375ddbe644186f9f1ed3ed (commit)
      from  66be6d74537e899b9351289940c3da98ee85f769 (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 a9820d3b147bac2214375ddbe644186f9f1ed3ed
Author: Mosè Giordano <address@hidden>
Date:   Sat Feb 22 13:21:22 2014 +0100

    Fix selection of default environment in LaTeX-environment.
    
    * latex.el (LaTeX-environment): Do not set
    `LaTeX-default-environment' to `environment' if the latter is
    equal to the current default environment.

diff --git a/ChangeLog b/ChangeLog
index ba2dcc0..d18a120 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2014-02-22  Mosè Giordano  <address@hidden>
+
+       * latex.el (LaTeX-environment): Do not set
+       `LaTeX-default-environment' to `environment' if the latter is
+       equal to the current default environment.
+
 2014-02-21  Mosè Giordano  <address@hidden>
 
        * latex.el (LaTeX-arg-usepackage-read-packages-with-options): New
diff --git a/latex.el b/latex.el
index 9ecceeb..af8dd27 100644
--- a/latex.el
+++ b/latex.el
@@ -538,11 +538,14 @@ It may be customized with the following variables:
                         (string-equal (LaTeX-current-environment) "document"))
                    LaTeX-default-document-environment)
                   (t LaTeX-default-environment)))
-    (environment (completing-read (concat "Environment type: (default "
-                                         default ") ")
-                                 (LaTeX-environment-list-filtered) nil nil nil
-                                 'LaTeX-environment-history default)))
-    (setq LaTeX-default-environment environment)
+        (environment (completing-read (concat "Environment type: (default "
+                                              default ") ")
+                                      (LaTeX-environment-list-filtered) nil nil
+                                      nil 'LaTeX-environment-history default)))
+    ;; Use `environment' as default for the next time only if it is different
+    ;; from the current default.
+    (unless (equal environment default)
+      (setq LaTeX-default-environment environment))
 
     (let ((entry (assoc environment (LaTeX-environment-list))))
       (if (null entry)

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

Summary of changes:
 ChangeLog |    6 ++++++
 latex.el  |   13 ++++++++-----
 2 files changed, 14 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

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