[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[AUCTeX-diffs] [elpa] externals/auctex c050335dd8 21/60: ; Fix typo
From: |
Tassilo Horn |
Subject: |
[AUCTeX-diffs] [elpa] externals/auctex c050335dd8 21/60: ; Fix typo |
Date: |
Fri, 8 Apr 2022 11:52:49 -0400 (EDT) |
branch: externals/auctex
commit c050335dd83778a05b9abaff354ad2573b972158
Author: Ikumi Keita <ikumi@ikumi.que.jp>
Commit: Ikumi Keita <ikumi@ikumi.que.jp>
; Fix typo
* doc/auctex.texi:
* font-latex.el:
* tex.el:
explicitely -> explicitly
---
doc/auctex.texi | 6 +++---
font-latex.el | 2 +-
tex.el | 6 +++---
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/doc/auctex.texi b/doc/auctex.texi
index 51316cbebe..8c46e5872f 100644
--- a/doc/auctex.texi
+++ b/doc/auctex.texi
@@ -1592,7 +1592,7 @@ seen indented in nested constructs.
@vindex LaTeX-item-indent
@vindex LaTeX-item-regexp
-You can explicitely indent single lines, usually by pressing @key{TAB},
+You can explicitly indent single lines, usually by pressing @key{TAB},
or marked regions by calling @code{indent-region} on it. If you have
@code{auto-fill-mode} enabled and a line is broken while you type it,
Emacs automatically cares about the indentation in the following line.
@@ -1750,7 +1750,7 @@ init file:
(add-hook 'LaTeX-mode-hook #'turn-on-auto-fill)
@end lisp
-You can manually fill explicitely marked regions, paragraphs,
+You can manually fill explicitly marked regions, paragraphs,
environments, complete sections, or the whole buffer. (Note that manual
filling in @AUCTeX{} will indent the start of the region to be filled in
contrast to many other Emacs modes.)
@@ -1766,7 +1766,7 @@ comment and continues after it. In order to prevent
overfull lines in
the source code, a linebreak will be inserted before the last
non-comment word by default. This can be changed by customizing
@code{LaTeX-fill-break-before-code-comments}. If you have overfull
-lines with code comments you can fill those explicitely by calling
+lines with code comments you can fill those explicitly by calling
@code{LaTeX-fill-paragraph} or pressing @kbd{M-q} with the cursor
positioned on them. This will add linebreaks in the comment and indent
subsequent comment lines to the column of the comment in the first line
diff --git a/font-latex.el b/font-latex.el
index 6249d6386d..830fe261bc 100644
--- a/font-latex.el
+++ b/font-latex.el
@@ -1277,7 +1277,7 @@ triggers Font Lock to recognize the change."
(set (make-local-variable 'font-lock-multiline) t)
;; The test for `major-mode' currently only works with docTeX mode
- ;; because `TeX-install-font-lock' is called explicitely in
+ ;; because `TeX-install-font-lock' is called explicitly in
;; `doctex-mode'. In case other modes have to be distinguished as
;; well, remove the call to `TeX-install-font-lock' from
;; `VirTeX-common-initialization' and place it in the different
diff --git a/tex.el b/tex.el
index eeca1aecae..4876ae55b6 100644
--- a/tex.el
+++ b/tex.el
@@ -777,7 +777,7 @@ emacs 24.1 and is then later run by emacs 24.5."
(TeX--call-minor-mode (ad-get-arg 0) (ad-get-arg 1))))
(defun TeX--call-minor-mode (var val &rest _)
"Call minor mode function if minor mode variable is found."
- ;; Instead of checking for each mode explicitely `minor-mode-list'
+ ;; Instead of checking for each mode explicitly `minor-mode-list'
;; could be used. But this may make the byte compiler pop up.
(when (memq var '(TeX-PDF-mode
TeX-source-correlate-mode TeX-interactive-mode
@@ -1878,7 +1878,7 @@ SyncTeX are recognized."
:group 'TeX-view
;; Since this is a global minor mode and we don't want to require
;; tex.el when the mode variable is set, the mode function is called
- ;; explicitely (if necessary) in `VirTeX-common-initialization'. We
+ ;; explicitly (if necessary) in `VirTeX-common-initialization'. We
;; do it there because otherwise `kill-all-local-variables' would
;; reset `TeX-source-correlate-output-page-function' which is
;; buffer-local.
@@ -5443,7 +5443,7 @@ regardless of its data type."
(let ((table (make-syntax-table (make-char-table 'syntax-table))))
;; Preset mode-independent syntax entries. (Mode-dependent
;; entries are set in the function `TeX-search-syntax-table'.)
- ;; ?\", ?\( and ?\) explicitely get whitespace syntax because
+ ;; ?\", ?\( and ?\) explicitly get whitespace syntax because
;; Emacs 21.3 and XEmacs don't generate a completely empty syntax
;; table.
(dolist (elt '((?\f . ">") (?\n . ">") (?\" . " ") (?\( . " ") (?\) . "
")))
- [AUCTeX-diffs] [elpa] externals/auctex 4b1c7015ae 45/60: Move contents of tex-buf.el into tex.el, (continued)
- [AUCTeX-diffs] [elpa] externals/auctex 4b1c7015ae 45/60: Move contents of tex-buf.el into tex.el, Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex e032df90e7 05/60: Fix simultaneity, Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex a078fda16b 06/60: ; * doc/auctex.texi (Starting a Command): Delete obosolete comment., Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex b1a0d5df74 36/60: ; * style/algpseudocode.el: Fix position of TeX-dialect., Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex 1bc2630275 20/60: Don't change syntax of ^^A comments in doctex mode (bug#35140), Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex fa8842c626 26/60: Recognize macrocode*? environments in doctex-mode, Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex 45aff50ff3 48/60: Support \mathcolor in style/x?color.el, Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex 5d2829aed4 49/60: Remove old defadvices (patch by Stefan Monnier), Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex 5cf46ff8e2 52/60: Improve parsing of re-definitions, Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex 03ed9004cd 60/60: Merge remote-tracking branch 'origin/master' into externals/auctex, Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex c050335dd8 21/60: ; Fix typo,
Tassilo Horn <=
- [AUCTeX-diffs] [elpa] externals/auctex 69b78fcc26 54/60: Don't change indentation when defining a conditional, Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex 323eb08ca6 46/60: Assign reasonable sentinel in AmS-TeX mode, Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex 2af3c1bcbd 33/60: Add new style/ifthen.el, Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex e1c3e37e0c 56/60: ; Update copyright year, Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex 3df1e313ea 25/60: Adapt TeX-region-hook for lexical-binding, Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex fded69c292 59/60: Let \Describe<foo> macros stay on their own lines, Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex 806100f29a 27/60: Delete obsoleted variables (bug#54339), Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex 9554d1e8a2 40/60: * doc/changes.texi: Announce the indentation improvement., Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex 8460859b69 34/60: Improve fontification of kernel macros, Tassilo Horn, 2022/04/08
- [AUCTeX-diffs] [elpa] externals/auctex 494d501e63 43/60: Adjust indenting of conditionals in styles, Tassilo Horn, 2022/04/08