]> git.donarmstrong.com Git - lib.git/blob - emacs_el/fixme.el
fix missing ) for org-mode
[lib.git] / emacs_el / fixme.el
1 ;;; fixme.el --- AUC-TeX style file for FiXme
2
3 ;; Copyright (C) 2000, 2002, 2004, 2006 Didier Verna.
4
5 ;; Author:        Didier Verna <didier@lrde.epita.fr>
6 ;; Maintainer:    Didier Verna <didier@lrde.epita.fr>
7 ;; Created:       Tue Apr 18 14:49:29 2000
8 ;; Last Revision: Tue Oct 19 18:07:27 2004
9 ;; Keywords:      tex abbrev data
10
11 ;; This file is part of FiXme.
12
13 ;; FiXme may be distributed and/or modified under the
14 ;; conditions of the LaTeX Project Public License, either version 1.1
15 ;; of this license or (at your option) any later version.
16 ;; The latest version of this license is in
17 ;; http://www.latex-project.org/lppl.txt
18 ;; and version 1.1 or later is part of all distributions of LaTeX
19 ;; version 1999/06/01 or later.
20
21 ;; FiXme consists of all files listed in the file `README'.
22
23
24 ;;; Commentary:
25
26 ;; Contents management by FCM version 0.1-b2.
27
28
29 ;;; Code:
30
31 (TeX-add-style-hook "fixme"
32   (function
33    (lambda ()
34      (TeX-add-symbols
35       '("fixmelogo")
36
37       '("listoffixmes")
38       '("listfixmename")
39
40       '("FXInline")
41       '("FXMargin")
42       '("FXMarginClue")
43       '("FXFootnote")
44       '("FXUser")
45       '("fixmeindexname")
46       '("FXIndex")
47
48       '("FXNote")
49       '("FXWarning")
50       '("FXError")
51       '("FXFatal")
52
53       '("fixmenoteprefix")
54       '("fixmenoteindexname")
55       '("fixmewarningprefix")
56       '("fixmewarningindexname")
57       '("fixmeerrorprefix")
58       '("fixmeerrorindexname")
59       '("fixmefatalprefix")
60       '("fixmefatalindexname")
61
62       '("thefixmecount")
63       '("thefixmenotecount")
64       '("thefixmewarningcount")
65       '("thefixmeerrorcount")
66       '("thefixmefatalcount")
67
68       '("fxnote" [ "Layout" ] "Note")
69       '("fxwarning" [ "Layout" ] "Warning")
70       '("fxerror" [ "Layout" ] "Error")
71       '("fixme" [ "Layout" ] "FiXme")
72
73       ;; Obsolete stuff:
74       '("FiXmeInline")
75       '("FiXmeMargin")
76       '("FiXmeFootnote")
77       '("FiXmeIndex")
78       '("FiXmeInfo")
79       '("FiXmeWarning")
80       '("FiXmeUser")
81       )
82      (LaTeX-add-environments
83       '("anfxnote")
84       '("anfxwarning")
85       '("anfxerror")
86       '("afixme")
87       )
88      )))
89
90
91 \f
92
93 ;;; Local variables:
94 ;;; eval: (put 'TeX-add-style-hook 'lisp-indent-function 1)
95 ;;; End:
96
97 ;;; fixme.el ends here