emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/auctex ec263fc 54/62: ; Fix byte-compile warnings


From: Tassilo Horn
Subject: [elpa] externals/auctex ec263fc 54/62: ; Fix byte-compile warnings
Date: Sun, 20 Dec 2020 10:40:05 -0500 (EST)

branch: externals/auctex
commit ec263fc1eaf5cd55d96c1957e78801c53b39de60
Author: Tassilo Horn <tsdh@gnu.org>
Commit: Tassilo Horn <tsdh@gnu.org>

    ; Fix byte-compile warnings
---
 bib-cite.el           | 2 ++
 style/Alegreya.el     | 3 +++
 style/AlegreyaSans.el | 3 +++
 style/AnonymousPro.el | 2 ++
 style/CJK.el          | 3 +++
 style/CJKutf8.el      | 2 ++
 style/FiraMono.el     | 3 +++
 style/FiraSans.el     | 3 +++
 style/MinionPro.el    | 4 +++-
 style/MyriadPro.el    | 3 +++
 style/XCharter.el     | 2 ++
 style/multind.el      | 1 +
 12 files changed, 30 insertions(+), 1 deletion(-)

diff --git a/bib-cite.el b/bib-cite.el
index 8d346c3..1447888 100644
--- a/bib-cite.el
+++ b/bib-cite.el
@@ -589,6 +589,8 @@
 ;; ----------------------------------------------------------------------------
 ;;; Code:
 
+(require 'tex)
+(require 'latex)
 (eval-when-compile
   (require 'cl-lib))
 
diff --git a/style/Alegreya.el b/style/Alegreya.el
index 1b23b1b..61034b3 100644
--- a/style/Alegreya.el
+++ b/style/Alegreya.el
@@ -31,6 +31,9 @@
 
 ;;; Code:
 
+(require 'tex)
+(require 'latex)
+
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
                  "font-latex"
diff --git a/style/AlegreyaSans.el b/style/AlegreyaSans.el
index fef84af..653442e 100644
--- a/style/AlegreyaSans.el
+++ b/style/AlegreyaSans.el
@@ -31,6 +31,9 @@
 
 ;;; Code:
 
+(require 'tex)
+(require 'latex)
+
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
                  "font-latex"
diff --git a/style/AnonymousPro.el b/style/AnonymousPro.el
index b9eed37..778c703 100644
--- a/style/AnonymousPro.el
+++ b/style/AnonymousPro.el
@@ -31,6 +31,8 @@
 
 ;;; Code:
 
+(require 'tex)
+
 (TeX-add-style-hook
  "AnonymousPro"
  (lambda ()
diff --git a/style/CJK.el b/style/CJK.el
index bbadfa0..c676c7c 100644
--- a/style/CJK.el
+++ b/style/CJK.el
@@ -31,6 +31,9 @@
 
 ;;; Code:
 
+(require 'tex)
+(require 'latex)
+
 (defvar LaTeX-CJK-package-options
   '("lowercase" "global" "local" "active" "encapsulated")
   "Package options for the CJK package.")
diff --git a/style/CJKutf8.el b/style/CJKutf8.el
index 5eb8fb2..d522015 100644
--- a/style/CJKutf8.el
+++ b/style/CJKutf8.el
@@ -30,6 +30,8 @@
 
 ;;; Code:
 
+(require 'tex)
+
 (TeX-add-style-hook
  "CJKutf8"
  (lambda ()
diff --git a/style/FiraMono.el b/style/FiraMono.el
index 8a9f6b5..1cdb871 100644
--- a/style/FiraMono.el
+++ b/style/FiraMono.el
@@ -31,6 +31,9 @@
 
 ;;; Code:
 
+(require 'tex)
+(require 'latex)
+
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
                  "font-latex"
diff --git a/style/FiraSans.el b/style/FiraSans.el
index 4b2e70b..ff5ce51 100644
--- a/style/FiraSans.el
+++ b/style/FiraSans.el
@@ -31,6 +31,9 @@
 
 ;;; Code:
 
+(require 'tex)
+(require 'latex)
+
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
                  "font-latex"
diff --git a/style/MinionPro.el b/style/MinionPro.el
index 4bd310e..7dc5546 100644
--- a/style/MinionPro.el
+++ b/style/MinionPro.el
@@ -24,7 +24,7 @@
 ;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 ;; 02110-1301, USA.
 
-;;; Commentary: 
+;;; Commentary:
 
 ;; This file adds support for `MinionPro.sty' (v2.3) from 2012/08/03.
 ;; The latest version of MinionPro is available as part of FontPro
@@ -32,6 +32,8 @@
 
 ;;; Code:
 
+(require 'tex)
+
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
                  "font-latex"
diff --git a/style/MyriadPro.el b/style/MyriadPro.el
index 2957d19..ff76fe0 100644
--- a/style/MyriadPro.el
+++ b/style/MyriadPro.el
@@ -33,6 +33,9 @@
 
 ;;; Code:
 
+(require 'tex)
+(require 'latex)
+
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
                  "font-latex"
diff --git a/style/XCharter.el b/style/XCharter.el
index b0f1573..9c1bd39 100644
--- a/style/XCharter.el
+++ b/style/XCharter.el
@@ -31,6 +31,8 @@
 
 ;;; Code:
 
+(require 'tex)
+
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
                  "font-latex"
diff --git a/style/multind.el b/style/multind.el
index 7162eed..e602253 100644
--- a/style/multind.el
+++ b/style/multind.el
@@ -25,6 +25,7 @@
 ;;; Code:
 
 (require 'tex)
+(require 'latex)
 
 (TeX-add-style-hook
  "multind"



reply via email to

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