[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[AUCTeX-diffs] GNU AUCTeX branch, master, updated. d308a1e486a40662c9e6a
From: |
Arash Esbati |
Subject: |
[AUCTeX-diffs] GNU AUCTeX branch, master, updated. d308a1e486a40662c9e6a0413bc29401764280cc |
Date: |
Sun, 5 Jan 2020 16:25:44 -0500 (EST) |
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 d308a1e486a40662c9e6a0413bc29401764280cc (commit)
from 13e6746758abcaf28bc61c2cbafcd52a8c9a6dd1 (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 d308a1e486a40662c9e6a0413bc29401764280cc
Author: Arash Esbati <address@hidden>
Date: Sun Jan 5 22:24:33 2020 +0100
Fix handling of LaTeX font declaration macros
* latex.el (LaTeX-common-initialization): Delete unnecessary and
duplicate entry for picture environment.
Add `-1' to LaTeX font declaration macros in order to work
correctly on active regions.
diff --git a/latex.el b/latex.el
index f57fcfb..0c6b58a 100644
--- a/latex.el
+++ b/latex.el
@@ -6233,7 +6233,7 @@ function would return non-nil and `(match-string 1)'
would return
;; The following have no special support, but are included in
;; case the auto files are missing.
- "sloppypar" "picture" "tabbing" "verbatim" "verbatim*"
+ "sloppypar" "tabbing" "verbatim" "verbatim*"
"flushright" "flushleft" "displaymath" "math" "quote" "quotation"
"center" "titlepage" "verse" "eqnarray*"
@@ -6495,9 +6495,11 @@ function would return non-nil and `(match-string 1)'
would return
"textbackslash" "textbar" "textless" "textgreater"
"textasciicircum" "textasciitilde"
"textregistered" "texttrademark"
- "rmfamily" "sffamily" "ttfamily" "mdseries" "bfseries"
- "itshape" "slshape" "upshape" "scshape"
- "eminnershape"))
+ "rmfamily" "sffamily" "ttfamily"
+ '("mdseries" -1) '("bfseries" -1)
+ '("itshape" -1) '("slshape" -1)
+ '("upshape" -1) '("scshape" -1)
+ '("eminnershape" -1)))
(TeX-run-style-hooks "LATEX")
-----------------------------------------------------------------------
Summary of changes:
latex.el | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
hooks/post-receive
--
GNU AUCTeX
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [AUCTeX-diffs] GNU AUCTeX branch, master, updated. d308a1e486a40662c9e6a0413bc29401764280cc,
Arash Esbati <=