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

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

[elpa] externals/auctex ba6e5ef69c 07/77: ; Fix warnings reported by 'ma


From: Tassilo Horn
Subject: [elpa] externals/auctex ba6e5ef69c 07/77: ; Fix warnings reported by 'make dynvars-check'
Date: Fri, 26 Aug 2022 16:06:31 -0400 (EDT)

branch: externals/auctex
commit ba6e5ef69c2a7f1ee2fa63cbca144d7d120f4406
Author: Arash Esbati <arash@gnu.org>
Commit: Arash Esbati <arash@gnu.org>

    ; Fix warnings reported by 'make dynvars-check'
    
    * style/bigstrut.el:
    * style/comment.el:
    * style/cuted.el:
    * style/footmisc.el:
    * style/footnotehyper.el:
    * style/jurabib.el:
    * style/midfloat.el:
    * style/multirow.el:
    * style/scrpage2.el:
    * style/ulem.el: Require latex.el in the styles.
---
 style/bigstrut.el      | 3 ++-
 style/comment.el       | 3 ++-
 style/cuted.el         | 3 ++-
 style/footmisc.el      | 1 +
 style/footnotehyper.el | 3 ++-
 style/jurabib.el       | 3 ++-
 style/midfloat.el      | 3 ++-
 style/multirow.el      | 3 ++-
 style/scrpage2.el      | 1 +
 style/ulem.el          | 3 ++-
 10 files changed, 18 insertions(+), 8 deletions(-)

diff --git a/style/bigstrut.el b/style/bigstrut.el
index 8324da3376..874a11802a 100644
--- a/style/bigstrut.el
+++ b/style/bigstrut.el
@@ -1,6 +1,6 @@
 ;;; bigstrut.el --- AUCTeX style for `bigstrut.sty'  -*- lexical-binding: t; 
-*-
 
-;; Copyright (C) 2012, 2014--2021 Free Software Foundation, Inc.
+;; Copyright (C) 2012, 2014--2022 Free Software Foundation, Inc.
 
 ;; Author: Mads Jensen <mje@inducks.org>
 ;; Maintainer: auctex-devel@gnu.org
@@ -30,6 +30,7 @@
 ;;; Code:
 
 (require 'tex)
+(require 'latex)
 
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
diff --git a/style/comment.el b/style/comment.el
index 8d0c90c99f..11a14192df 100644
--- a/style/comment.el
+++ b/style/comment.el
@@ -1,6 +1,6 @@
 ;;; comment.el --- AUCTeX style for `comment.sty'  -*- lexical-binding: t; -*-
 
-;; Copyright (C) 2007, 2018--2021 Free Software Foundation, Inc.
+;; Copyright (C) 2007, 2018--2022 Free Software Foundation, Inc.
 
 ;; Author: Ralf Angeli <angeli@caeruleus.net>
 ;; Maintainer: auctex-devel@gnu.org
@@ -32,6 +32,7 @@
 
 (require 'tex)
 (require 'tex-style)
+(require 'latex)
 
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
diff --git a/style/cuted.el b/style/cuted.el
index cb769fc3a9..568eb9622e 100644
--- a/style/cuted.el
+++ b/style/cuted.el
@@ -1,6 +1,6 @@
 ;;; cuted.el --- AUCTeX style for `cuted.sty' (v2.0)  -*- lexical-binding: t; 
-*-
 
-;; Copyright (C) 2021 Free Software Foundation, Inc.
+;; Copyright (C) 2021, 2022 Free Software Foundation, Inc.
 
 ;; Author: Arash Esbati <arash@gnu.org>
 ;; Maintainer: auctex-devel@gnu.org
@@ -32,6 +32,7 @@
 ;;; Code:
 
 (require 'tex)
+(require 'latex)
 
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
diff --git a/style/footmisc.el b/style/footmisc.el
index 64fd89e163..bc3b56adf9 100644
--- a/style/footmisc.el
+++ b/style/footmisc.el
@@ -30,6 +30,7 @@
 ;;; Code:
 
 (require 'tex)
+(require 'latex)
 
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
diff --git a/style/footnotehyper.el b/style/footnotehyper.el
index d97e5b2533..d37af85307 100644
--- a/style/footnotehyper.el
+++ b/style/footnotehyper.el
@@ -1,6 +1,6 @@
 ;;; footnotehyper.el --- AUCTeX style for `footnotehyper.sty'  -*- 
lexical-binding: t; -*-
 
-;; Copyright (C) 2021 Free Software Foundation, Inc.
+;; Copyright (C) 2021, 2022 Free Software Foundation, Inc.
 
 ;; Author: Arash Esbati <arash@gnu.org>
 ;; Maintainer: auctex-devel@gnu.org
@@ -31,6 +31,7 @@
 ;;; Code:
 
 (require 'tex)
+(require 'latex)
 
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
diff --git a/style/jurabib.el b/style/jurabib.el
index 68c02fc95e..09284cf2e4 100644
--- a/style/jurabib.el
+++ b/style/jurabib.el
@@ -1,6 +1,6 @@
 ;;; jurabib.el --- AUCTeX style for the `jurabib' package  -*- 
lexical-binding: t; -*-
 
-;; Copyright (C) 2004-2021  Free Software Foundation, Inc.
+;; Copyright (C) 2004-2022  Free Software Foundation, Inc.
 
 ;; Author: Ralf Angeli <angeli@iwi.uni-sb.de>
 ;; Maintainer: auctex-devel@gnu.org
@@ -37,6 +37,7 @@
 
 (require 'tex)
 (require 'tex-style)
+(require 'latex)
 
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
diff --git a/style/midfloat.el b/style/midfloat.el
index 66d794c2eb..38a1e93228 100644
--- a/style/midfloat.el
+++ b/style/midfloat.el
@@ -1,6 +1,6 @@
 ;;; midfloat.el --- AUCTeX style for `midfloat.sty' (v1.1)  -*- 
lexical-binding: t; -*-
 
-;; Copyright (C) 2021 Free Software Foundation, Inc.
+;; Copyright (C) 2021, 2022 Free Software Foundation, Inc.
 
 ;; Author: Arash Esbati <arash@gnu.org>
 ;; Maintainer: auctex-devel@gnu.org
@@ -32,6 +32,7 @@
 ;;; Code:
 
 (require 'tex)
+(require 'latex)
 
 (TeX-add-style-hook
  "midfloat"
diff --git a/style/multirow.el b/style/multirow.el
index 25d9f96c0d..11ae34e6ba 100644
--- a/style/multirow.el
+++ b/style/multirow.el
@@ -1,6 +1,6 @@
 ;;; multirow.el --- AUCTeX style for `multirow.sty'  -*- lexical-binding: t; 
-*-
 
-;; Copyright (C) 2011, 2018--2021 Free Software Foundation, Inc.
+;; Copyright (C) 2011, 2018--2022 Free Software Foundation, Inc.
 
 ;; Author: Mads Jensen <mje@inducks.org>
 ;; Maintainer: auctex-devel@gnu.org
@@ -30,6 +30,7 @@
 ;;; Code:
 
 (require 'tex)
+(require 'latex)
 
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
diff --git a/style/scrpage2.el b/style/scrpage2.el
index dca55909e4..b6530afa45 100644
--- a/style/scrpage2.el
+++ b/style/scrpage2.el
@@ -28,6 +28,7 @@
 ;;; Code:
 
 (require 'tex)
+(require 'latex)
 
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords
diff --git a/style/ulem.el b/style/ulem.el
index f84fcc60d9..cfb6105e29 100644
--- a/style/ulem.el
+++ b/style/ulem.el
@@ -1,6 +1,6 @@
 ;;; ulem.el --- AUCTeX style for `ulem.sty'  -*- lexical-binding: t; -*-
 
-;; Copyright (C) 2012-2021  Free Software Foundation, Inc.
+;; Copyright (C) 2012-2022  Free Software Foundation, Inc.
 
 ;; Author: Mads Jensen <mje@inducks.org>
 ;; Keywords: tex
@@ -29,6 +29,7 @@
 ;;; Code:
 
 (require 'tex)
+(require 'latex)
 
 ;; Silence the compiler:
 (declare-function font-latex-add-keywords



reply via email to

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