AUCTeX Sync -- New Style Files
[packages] / xemacs-packages / auctex / style / luatextra.el
1 ;;; luatextra.el --- AUCTeX style for `luatextra.sty' version 1.0.
2
3 ;; Copyright (C) 2014 Free Software Foundation, Inc.
4
5 ;; Author: Davide G. M. Salvetti <salve@debian.org>
6 ;; Maintainer: auctex-devel@gnu.org
7 ;; Created: 2014-11-15
8 ;; Keywords: tex
9
10 ;; This file is part of AUCTeX.
11
12 ;; AUCTeX is free software; you can redistribute it and/or modify it
13 ;; under the terms of the GNU General Public License as published by the
14 ;; Free Software Foundation; either version 3, or (at your option) any
15 ;; later version.
16
17 ;; AUCTeX is distributed in the hope that it will be useful, but WITHOUT
18 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 ;; FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 ;; for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with AUCTeX; see the file COPYING.  If not, see
24 ;; <http://www.gnu.org/licenses/>.
25
26 ;;; Commentary:
27
28 ;; This file adds support for `luatextra.sty' 1.0.
29
30 ;;; Code:
31
32 (TeX-add-style-hook
33     "luatextra"
34   (lambda ()
35     (TeX-run-style-hooks "ifluatex" "fontspec"
36                          ;; FIXME: yet to be written:
37                          ;; "luatexbase"
38                          "metalogo" "luacode"))
39   LaTeX-dialect)
40
41 (defvar LaTeX-luatextra-package-options nil
42   "Package options for the ifluatex package.")
43
44 ;;; luatextra.el ends here