# HG changeset patch # User Uwe Brauer # Date 1662308045 -7200 # Sun Sep 04 18:14:05 2022 +0200 # Node ID ca1614dae27a8cef4179e6ac347335db0f348ba0 # Parent 6d3b87b3ebe7e99ce0fd3401e5038326b5784b9a Add support for the amsaddr package * style/amsaddr.el: Add support for the amsaddr style. diff --git a/Makefile.in b/Makefile.in --- a/Makefile.in +++ b/Makefile.in @@ -195,7 +195,7 @@ style/ifxetex.el style/multibib.el style/ltcaption.el \ style/keyval.el style/kvoptions.el style/kvsetkeys.el \ style/proc.el style/microtype.el style/tcolorboxlib-theorems.el \ - style/catchfilebetweentags.el + style/catchfilebetweentags.el style/amsaddr.el STYLEELC = $(STYLESRC:.el=.elc) diff --git a/style/amsaddr.el b/style/amsaddr.el new file mode 100644 --- /dev/null +++ b/style/amsaddr.el @@ -0,0 +1,48 @@ +;;; amsaddr.el --- AUCTeX style for the (LaTeX) amsaddr style -*- lexical-binding: t; -*- + +;; Copyright (C) 2016--2022 Free Software Foundation, Inc. + +;; Author: Uwe Brauer +;; Created: Sep 4, 2022 +;; 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 the amsaddr style. + + + +;;; Code: + +(require 'tex) +(require 'latex) + +;; Silence the compiler: +(declare-function font-latex-add-keywords + "font-latex" + (keywords class)) + +(defvar LaTeX-amsaddr-package-options + '("foot") + "Package options for the amsaddr package.") + + + +;;; amsaddr.el ends here