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. 5c287512117fdc92ad0c2


From: Tassilo Horn
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. 5c287512117fdc92ad0c2072d798662a4807d5fa
Date: Tue, 27 Oct 2020 11:52:26 -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  5c287512117fdc92ad0c2072d798662a4807d5fa (commit)
      from  3fa1baadab89c955848f8c3ebc81c29dbb120664 (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 5c287512117fdc92ad0c2072d798662a4807d5fa
Author: Tassilo Horn <tsdh@gnu.org>
Date:   Tue Oct 27 16:52:05 2020 +0100

    ; Fix some byte-compiler warnings

diff --git a/style/acro.el b/style/acro.el
index c3a3256..a691d6e 100644
--- a/style/acro.el
+++ b/style/acro.el
@@ -29,7 +29,8 @@
 
 ;;; Code:
 
-(require 'tex) ;Indispensable when compiling the call to `TeX-auto-add-type'.
+(require 'tex)
+(require 'latex)
 
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
diff --git a/style/arabxetex.el b/style/arabxetex.el
index 249d7a4..d675de2 100644
--- a/style/arabxetex.el
+++ b/style/arabxetex.el
@@ -35,6 +35,9 @@
 (declare-function font-latex-add-keywords
                  "font-latex"
                  (keywords class))
+(declare-function TeX-check-engine-add-engines
+                  "tex-buf"
+                  (&rest engines))
 
 (TeX-add-style-hook
  "arabxetex"
diff --git a/style/beamer.el b/style/beamer.el
index 453878f..5221c4f 100644
--- a/style/beamer.el
+++ b/style/beamer.el
@@ -62,7 +62,7 @@
 (TeX-add-style-hook
  "beamer"
  (lambda ()
-   (add-hook 'LaTeX-after-insert-env-hooks 'LaTeX-beamer-after-insert-env nil 
t)
+   (add-hook 'LaTeX-after-insert-env-hook 'LaTeX-beamer-after-insert-env nil t)
 
    (TeX-run-style-hooks "amsmath" "amssymb" "amsthm" "color" "geometry"
                        "hyperref" "inputenc" "translator" "xcolor")
diff --git a/style/bidi.el b/style/bidi.el
index e2ad675..d1e080d 100644
--- a/style/bidi.el
+++ b/style/bidi.el
@@ -29,10 +29,16 @@
 
 ;;; Code:
 
+(require 'tex)
+(require 'latex)
+
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
                  "font-latex"
                  (keywords class))
+(declare-function TeX-check-engine-add-engines
+                  "tex-buf"
+                  (&rest engines))
 
 (defvar LaTeX-bidi-package-options
   '("RTLdocument" "rldocument" "extrafootnotefeatures")
diff --git a/style/doc.el b/style/doc.el
index 20e1486..5c2b2e8 100644
--- a/style/doc.el
+++ b/style/doc.el
@@ -69,7 +69,7 @@
                '("macrocode*" current-indentation) t)
    (add-to-list 'LaTeX-indent-environment-list
                '("macro" current-indentation) t)
-   (add-hook 'LaTeX-after-insert-env-hooks 'LaTeX-doc-after-insert-macrocode
+   (add-hook 'LaTeX-after-insert-env-hook 'LaTeX-doc-after-insert-macrocode
             nil t)
    (LaTeX-add-environments
     "theglossary"

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

Summary of changes:
 style/acro.el      | 3 ++-
 style/arabxetex.el | 3 +++
 style/beamer.el    | 2 +-
 style/bidi.el      | 6 ++++++
 style/doc.el       | 2 +-
 5 files changed, 13 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

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