auctex-diffs
[Top][All Lists]
Advanced

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

[AUCTeX-diffs] [elpa] externals/auctex 7e6d83ff4e 47/60: Add news


From: Tassilo Horn
Subject: [AUCTeX-diffs] [elpa] externals/auctex 7e6d83ff4e 47/60: Add news
Date: Fri, 8 Apr 2022 11:52:55 -0400 (EDT)

branch: externals/auctex
commit 7e6d83ff4eb1c775cf0d2b94f12b38f72941064a
Author: Ikumi Keita <ikumi@ikumi.que.jp>
Commit: Ikumi Keita <ikumi@ikumi.que.jp>

    Add news
    
    * doc/changes.texi: Announce the disappearance of tex-buf.el.
    * tex.el (TeX-command-default): Add change somehow dropped off from
    the previous commit.
---
 doc/changes.texi | 14 ++++++++++++++
 tex.el           |  3 +--
 2 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/doc/changes.texi b/doc/changes.texi
index fbf4826ffc..f59bfef222 100644
--- a/doc/changes.texi
+++ b/doc/changes.texi
@@ -37,6 +37,20 @@ Indenting of conditionals is improved.  Code inside 
constructs like
 @samp{\ifx . \else . \fi} is correctly indented.  An interface for style
 files is also introduced which can add their macros to the indentation
 engine.  Check the file @file{algpseudocode.el} for an example.
+
+@item
+Now @file{tex-buf.el} is merged into @file{tex.el} and no longer exists.
+If your personal code has @code{(require 'tex-buf)}, one of the following
+prescriptions would serve.
+@enumerate
+@item
+Remove @code{(require 'tex-buf)}.
+@item
+Replace it with @code{(require 'tex)}.
+@item
+Replace it with @code{(require 'latex)}.
+@end enumerate
+
 @end itemize
 
 @heading News in 13.1
diff --git a/tex.el b/tex.el
index 81997e46fa..e0947b73d3 100644
--- a/tex.el
+++ b/tex.el
@@ -7545,8 +7545,7 @@ omitted) and `TeX-region-file'."
                                  (append BibTeX-file-extensions
                                          TeX-Biber-file-extensions)))
            ;; We should check for bst files here as well.
-           (if (and (boundp 'LaTeX-using-Biber)
-                    LaTeX-using-Biber)
+           (if (bound-and-true-p LaTeX-using-Biber)
                TeX-command-Biber TeX-command-BibTeX))
           ((and
             ;; Rationale: makeindex should be run when final document is almost




reply via email to

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