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 c540e3a5b847693219aa6f5badb6aa45194c81ce (commit)
from a21c10a076734b710145df5950459351025b8723 (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 c540e3a5b847693219aa6f5badb6aa45194c81ce
Author: Arash Esbati <[email protected]>
Date: Wed Jun 2 11:39:35 2021 +0200
Define minor modes using keywords
* tex.el (TeX-Omega-mode, TeX-interactive-mode):
* tex-fold.el (TeX-fold-mode):
* style/kpfonts.el (LaTeX-kpfonts-mode):
* latex.el (LaTeX-math-mode): Use keywords to define minor modes.
diff --git a/latex.el b/latex.el
index 8145158..70f8866 100644
--- a/latex.el
+++ b/latex.el
@@ -5513,7 +5513,9 @@ the symbols will be surrounded by dollar signs. The
following
commands are defined:
\\{LaTeX-math-mode-map}"
- nil nil (list (cons (LaTeX-math-abbrev-prefix) LaTeX-math-keymap))
+ :init-value nil
+ :lighter nil
+ :keymap (list (cons (LaTeX-math-abbrev-prefix) LaTeX-math-keymap))
(TeX-set-mode-name))
(defalias 'latex-math-mode #'LaTeX-math-mode)
diff --git a/style/kpfonts.el b/style/kpfonts.el
index 654378f..8dec44c 100644
--- a/style/kpfonts.el
+++ b/style/kpfonts.el
@@ -508,7 +508,9 @@ argument, the symbols will be surrounded by dollar signs.
The
following commands are defined:
\\{LaTeX-kpfonts-mode-map}"
- nil nil (list (cons (LaTeX-kpfonts-abbrev-prefix) LaTeX-kpfonts-keymap))
+ :init-value nil
+ :lighter nil
+ :keymap (list (cons (LaTeX-kpfonts-abbrev-prefix) LaTeX-kpfonts-keymap))
(TeX-set-mode-name))
(easy-menu-define LaTeX-kpfonts-mode-menu
diff --git a/tex-fold.el b/tex-fold.el
index ba7e9c0..9eab077 100644
--- a/tex-fold.el
+++ b/tex-fold.el
@@ -897,7 +897,9 @@ the other elements. The ordering among elements is
maintained."
Called interactively, with no prefix argument, toggle the mode.
With universal prefix ARG (or if ARG is nil) turn mode on.
With zero or negative ARG turn mode off."
- nil nil (list (cons TeX-fold-command-prefix TeX-fold-keymap))
+ :init-value nil
+ :lighter nil
+ :keymap (list (cons TeX-fold-command-prefix TeX-fold-keymap))
(if TeX-fold-mode
(progn
(set (make-local-variable 'search-invisible) t)
diff --git a/tex.el b/tex.el
index 12d401d..d7eca44 100644
--- a/tex.el
+++ b/tex.el
@@ -1601,7 +1601,7 @@ For available TYPEs, see variable `TeX-engine'."
(define-minor-mode TeX-Omega-mode
"Minor mode for using the Omega engine."
- nil nil nil
+ :init-value nil :lighter nil :keymap nil
:group 'TeX-command
(TeX-engine-set (if TeX-Omega-mode 'omega 'default)))
(defalias 'tex-omega-mode #'TeX-Omega-mode)
@@ -2123,7 +2123,7 @@ for backward compatibility."
(define-minor-mode TeX-interactive-mode
"Minor mode for interactive runs of TeX."
- nil nil nil
+ :init-value nil :lighter nil :keymap nil
:group 'TeX-command
(TeX-set-mode-name 'TeX-interactive-mode t t))
(defalias 'tex-interactive-mode #'TeX-interactive-mode)
-----------------------------------------------------------------------
Summary of changes:
latex.el | 4 +++-
style/kpfonts.el | 4 +++-
tex-fold.el | 4 +++-
tex.el | 4 ++--
4 files changed, 11 insertions(+), 5 deletions(-)
hooks/post-receive
--
GNU AUCTeX
_______________________________________________
auctex-diffs mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/auctex-diffs