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. 59a9e5b35b4c7ed914578


From: Ikumi Keita
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. 59a9e5b35b4c7ed91457868f7b64144ed942e4d7
Date: Thu, 12 Apr 2018 07:08:36 -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  59a9e5b35b4c7ed91457868f7b64144ed942e4d7 (commit)
       via  94378c1abacf830cfaab33d5030dfff9d6a1c2c0 (commit)
      from  15d3d976d1803d465f1e2541c427a3d2ecd83fe4 (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 59a9e5b35b4c7ed91457868f7b64144ed942e4d7
Author: Ikumi Keita <address@hidden>
Date:   Thu Apr 12 20:06:25 2018 +0900

    Correct how `TeX-record-buffer' is used
    
    * tex-buf.el (TeX-pop-to-buffer): Use `TeX-record-buffer' in accord with
    the documents.
    * doc/changes.texi: Mention the change and warn users who have
    customized the option.

diff --git a/doc/changes.texi b/doc/changes.texi
index dc4b1ce..5ef6190 100644
--- a/doc/changes.texi
+++ b/doc/changes.texi
@@ -18,6 +18,12 @@ enable, call @kbd{M-x flymake-mode RET} or add this to your
 @lisp
 (add-hook 'LaTeX-mode-hook #'flymake-mode)
 @end lisp
+
address@hidden
+The way the option @code{TeX-record-buffer} is used was corrected.  It
+was used in just the opposite way as the document says.  Erase the
+customization if you have customized this option since it now acts in
+reverse to your expectation.
 @end itemize
 
 @heading News in 12.1
diff --git a/tex-buf.el b/tex-buf.el
index b8f901a..c6b1372 100644
--- a/tex-buf.el
+++ b/tex-buf.el
@@ -227,7 +227,7 @@ of `display-buffer' for additional customization 
information.
 
 Optional third arg NORECORD non-nil means do not put this buffer
 at the front of the list of recently selected ones."
-  (pop-to-buffer buffer other-window (and norecord TeX-record-buffer)))
+  (pop-to-buffer buffer other-window (and norecord (not TeX-record-buffer))))
 
 (defun TeX-recenter-output-buffer (line)
   "Redisplay buffer of TeX job output so that most recent output can be seen.

commit 94378c1abacf830cfaab33d5030dfff9d6a1c2c0
Author: Ikumi Keita <address@hidden>
Date:   Thu Apr 12 19:55:25 2018 +0900

    Correct record in changes.texi
    
    * doc/changes.texi (): Make a new section for release 12.2 and move
    mention about change made after release 12.1 there.

diff --git a/doc/changes.texi b/doc/changes.texi
index bddec6a..dc4b1ce 100644
--- a/doc/changes.texi
+++ b/doc/changes.texi
@@ -8,25 +8,28 @@
 
 @end ifset
 
address@hidden News in 12.1
address@hidden News in 12.2
 
 @itemize @bullet
 @item
address@hidden now requires GNU Emacs 24 or higher.  Support for XEmacs has
-been dropped.
-
address@hidden
-Besides the change in the supported version of Emacs, there has been no
-functional change in this release, which is equivalent to version 11.92.
-
address@hidden
 @AUCTeX{} has support for the Flymake package in Emacs 26 or newer.  To
 enable, call @kbd{M-x flymake-mode RET} or add this to your
 @file{.emacs} file:
 @lisp
 (add-hook 'LaTeX-mode-hook #'flymake-mode)
 @end lisp
address@hidden itemize
 
address@hidden News in 12.1
+
address@hidden @bullet
address@hidden
address@hidden now requires GNU Emacs 24 or higher.  Support for XEmacs has
+been dropped.
+
address@hidden
+Besides the change in the supported version of Emacs, there has been no
+functional change in this release, which is equivalent to version 11.92.
 @end itemize
 
 @heading News in 11.92

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

Summary of changes:
 doc/changes.texi | 27 ++++++++++++++++++---------
 tex-buf.el       |  2 +-
 2 files changed, 19 insertions(+), 10 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

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