branch: externals/auctex
commit 449ec06951a8723520da9f0ee423e2989342b45c
Author: Arash Esbati <[email protected]>
Commit: Arash Esbati <[email protected]>
; Silence the compiler in styles for `reftex-compile-variables'
* style/floatrow.el:
* style/ltxtable.el:
* style/subfiles.el: Silence the compiler in the style files for
the function `reftex-compile-variables'.
---
style/floatrow.el | 4 ++++
style/ltxtable.el | 4 ++++
style/subfiles.el | 4 ++++
3 files changed, 12 insertions(+)
diff --git a/style/floatrow.el b/style/floatrow.el
index 3333ecc..baad7cf 100644
--- a/style/floatrow.el
+++ b/style/floatrow.el
@@ -71,6 +71,10 @@
"font-latex"
(keywords class))
+(declare-function reftex-compile-variables
+ "reftex"
+ ())
+
(defvar LaTeX-floatrow-key-val-options
'(;; 3.1.1 Float Style
("style" ("plain" "plaintop" "Plaintop"
diff --git a/style/ltxtable.el b/style/ltxtable.el
index 9b4af98..233ffeb 100644
--- a/style/ltxtable.el
+++ b/style/ltxtable.el
@@ -36,6 +36,10 @@
"font-latex"
(keywords class))
+(declare-function reftex-compile-variables
+ "reftex"
+ ())
+
(defvar LaTeX-ltxtable-file-regexp
`(,(concat "\\\\LTXtable"
"{\\(?:[^}]+\\)}"
diff --git a/style/subfiles.el b/style/subfiles.el
index e625e82..4937bc4 100644
--- a/style/subfiles.el
+++ b/style/subfiles.el
@@ -38,6 +38,10 @@
"font-latex"
(keywords class))
+(declare-function reftex-compile-variables
+ "reftex"
+ ())
+
(defvar LaTeX-subfiles-package-options nil
"Package options for the subfiles package.")