[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[AUCTeX-diffs] [elpa] externals/auctex 8a2cdac 02/43: Add new style/fbox
From: |
Tassilo Horn |
Subject: |
[AUCTeX-diffs] [elpa] externals/auctex 8a2cdac 02/43: Add new style/fbox.el |
Date: |
Sat, 11 Apr 2020 15:05:18 -0400 (EDT) |
branch: externals/auctex
commit 8a2cdac67c6d66809c20a4f7f934c35fa4e165ef
Author: Arash Esbati <address@hidden>
Commit: Arash Esbati <address@hidden>
Add new style/fbox.el
* Makefile.in (STYLESRC): Add new style.
* style/fbox.el: New file.
---
Makefile.in | 2 +-
style/fbox.el | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 52 insertions(+), 1 deletion(-)
diff --git a/Makefile.in b/Makefile.in
index 95bc0eb..666b686 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -170,7 +170,7 @@ STYLESRC = style/prosper.el \
style/ocg-p.el style/ocgx.el style/thm-restate.el \
style/pythontex.el style/dashundergaps.el style/beamerarticle.el \
style/changelog.el style/ltugboat.el style/beamerswitch.el \
- style/multitoc.el style/xkcdcolors.el
+ style/multitoc.el style/fbox.el style/xkcdcolors.el
STYLEELC = $(STYLESRC:.el=.elc)
diff --git a/style/fbox.el b/style/fbox.el
new file mode 100644
index 0000000..bc3b5cf
--- /dev/null
+++ b/style/fbox.el
@@ -0,0 +1,51 @@
+;;; fbox.el --- AUCTeX style for `fbox.sty' (v0.03)
+
+;; Copyright (C) 2019 Free Software Foundation, Inc.
+
+;; Author: Arash Esbati <address@hidden>
+;; Maintainer: address@hidden
+;; Created: 2019-11-08
+;; Keywords: tex
+
+;; This file is part of AUCTeX.
+
+;; AUCTeX is free software; you can redistribute it and/or modify it
+;; under the terms of the GNU General Public License as published by
+;; the Free Software Foundation; either version 3, or (at your option)
+;; any later version.
+
+;; AUCTeX is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with AUCTeX; see the file COPYING. If not, write to the Free
+;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+;; 02110-1301, USA.
+
+;;; Commentary:
+
+;; This file adds support for `fbox.sty' (v2.01) from 2019/11/04.
+;; `fbox.sty' is part of TeXLive.
+
+;; Silence the compiler:
+(declare-function font-latex-add-keywords
+ "font-latex"
+ (keywords class))
+
+(TeX-add-style-hook
+ "fbox"
+ (lambda ()
+ (TeX-add-symbols
+ '("fbox" [ "Frame parts (combination of lrtb)" ] t)
+ '("fbox*" [ "Frame parts (combination of lrtb)" ] t))
+
+ ;; Fontification
+ (when (and (featurep 'font-latex)
+ (eq TeX-install-font-lock 'font-latex-setup))
+ (font-latex-add-keywords '(("fbox" "*[{"))
+ 'function)))
+ LaTeX-dialect)
+
+;;; fbox.el ends here
- [AUCTeX-diffs] [elpa] externals/auctex updated (817b1c4 -> f571914), Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex 19716fb 01/43: ; Add ELPA release process description, Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex 7c48889 03/43: ; * style/fbox.el: Fix wrong package version., Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex 2ceda21 09/43: Use pdf rather than dvi for preview package document, Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex f700ec0 16/43: Support extended NFSS shapes with 2020-02-02 LaTeX kernel, Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex 7f60ef7 12/43: Update Pygments styles to version 2.5.2, Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex 13e6746 13/43: Delete insertion of wrong dollar sign, Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex 486650b 05/43: Update menu in proper timing (bug#38058), Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex 1d72a5c 21/43: Remove compatibility code for older emacsen, Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex 8927ed6 04/43: Update style/ltugboat.el to class version 2.22, Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex 8a2cdac 02/43: Add new style/fbox.el,
Tassilo Horn <=
- [AUCTeX-diffs] [elpa] externals/auctex 4c1bb12 10/43: ; * tex-style.el (LaTeX-exam-reftex-quick-id-key): Fix docstring., Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex 45f0298 07/43: * font-latex.el (font-latex-setup): Remove XEmacs compat code., Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex e35f85a 06/43: Update style/caption.el to package version 3.4a, Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex 6c25ffe 08/43: Adjust Makefile clean targets, Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex d308a1e 14/43: Fix handling of LaTeX font declaration macros, Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex 68247ff 18/43: Delete obsolete comment, Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex f2bac9d 11/43: Improve environment insertion (bug#35284), Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex 8cd9db3 17/43: Add changelog for my previous bug fix, Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex 3424aae 15/43: Update style/fbox.el to package version 0.04, Tassilo Horn, 2020/04/11
- [AUCTeX-diffs] [elpa] externals/auctex 7565d7c 19/43: Remove compatibility code for older emacsen, Tassilo Horn, 2020/04/11