branch: externals/auctex commit 8c6a5ae93babb05bad22581d7338bf3c7099c762 Author: Mosè Giordano <m...@gnu.org> Commit: Mosè Giordano <m...@gnu.org>
[Fix #19301] Fix closing bracket in style/mathtools.el. * style/mathtools.el ("mathtools"): Fix closing bracket placement. (Bug#19301) --- ChangeLog | 5 +++++ style/mathtools.el | 30 +++++++++++++++--------------- 2 files changed, 20 insertions(+), 15 deletions(-) diff --git a/ChangeLog b/ChangeLog index 96a2179..af4b4f9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-12-08 Mos� Giordano <m...@gnu.org> + + * style/mathtools.el ("mathtools"): Fix closing bracket + placement. (Bug#19301) + 2014-12-08 Arash Esbati <esb...@gmx.de> * Makefile.in (STYLESRC): Add new styles. diff --git a/style/mathtools.el b/style/mathtools.el index 04ecc0d..0890ce6 100644 --- a/style/mathtools.el +++ b/style/mathtools.el @@ -148,25 +148,25 @@ '("splitdfrac" 2)) (setq LaTeX-item-list - (append '(("multlined" . LaTeX-item-equation) - ("lgathered" . LaTeX-item-equation) - ("rgathered" . LaTeX-item-equation) + (append '(("multlined" . LaTeX-item-equation) + ("lgathered" . LaTeX-item-equation) + ("rgathered" . LaTeX-item-equation) ("spreadlines" . LaTeX-item-equation) - ("matrix*" . LaTeX-item-equation) - ("pmatrix*" . LaTeX-item-equation) - ("bmatrix*" . LaTeX-item-equation) - ("Bmatrix*" . LaTeX-item-equation) - ("vmatrix*" . LaTeX-item-equation) - ("Vmatrix*" . LaTeX-item-equation) - ("dcases" . LaTeX-item-equation) - ("dcases*" . LaTeX-item-equation)) + ("matrix*" . LaTeX-item-equation) + ("pmatrix*" . LaTeX-item-equation) + ("bmatrix*" . LaTeX-item-equation) + ("Bmatrix*" . LaTeX-item-equation) + ("vmatrix*" . LaTeX-item-equation) + ("Vmatrix*" . LaTeX-item-equation) + ("dcases" . LaTeX-item-equation) + ("dcases*" . LaTeX-item-equation)) LaTeX-item-list)) (setq LaTeX-label-alist - (append '(("lgathered" . LaTeX-amsmath-label) - ("rgathered" . LaTeX-amsmath-label) - ("multlined" . LaTeX-amsmath-label) - LaTeX-label-alist)))) + (append '(("lgathered" . LaTeX-amsmath-label) + ("rgathered" . LaTeX-amsmath-label) + ("multlined" . LaTeX-amsmath-label)) + LaTeX-label-alist))) LaTeX-dialect) (defun LaTeX-mathtools-env-matrix-starred (env)