Initial Commit
[packages] / xemacs-packages / auctex / style / mflogo.el
1 ;;; mflogo.el --- AUCTeX style for `mflogo.sty'
2
3 ;; Author: Mads Jensen <mje@inducks.org>
4 ;; Maintainer: auctex-devel@gnu.org
5 ;; Created: 2011-02-02
6 ;; Keywords: tex
7
8 ;; This file is part of AUCTeX.
9
10 ;; AUCTeX is free software; you can redistribute it and/or modify it
11 ;; under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 3, or (at your option)
13 ;; any later version.
14
15 ;; AUCTeX is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with AUCTeX; see the file COPYING.  If not, write to the Free
22 ;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
23 ;; 02110-1301, USA.
24
25 ;;; Commentary:
26
27 ;; This file adds support for `mflogo.sty'.
28
29 ;;; Code:
30
31 (TeX-add-style-hook
32  "mflogo"
33  (lambda ()
34    (TeX-add-symbols
35     '("textlogo" 1)
36     '("logofamily" 1))
37
38    ;; Fontification
39    (when (and (featurep 'font-latex)
40               (eq TeX-install-font-lock 'font-latex-setup))
41      (font-latex-add-keywords '(("logofamily" "{")
42                                 ("textlogo" "{"))
43                               'function)))
44  LaTeX-dialect)
45
46 (defvar LaTeX-mflogo-package-options nil
47   "Package options for the mflogo package.")
48
49 ;;; mflogo.el ends here