~louis/ubuntu/trusty/clamav/lp799623_fix_logrotate

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/utils/emacs/tablegen-mode.el

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-03-12 11:30:04 UTC
  • mfrom: (0.41.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100312113004-b0fop4bkycszdd0z
Tags: 0.96~rc1+dfsg-0ubuntu1
* New upstream RC - FFE (LP: #537636):
  - Add OfficialDatabaseOnly option to clamav-base.postinst.in
  - Add LocalSocketGroup option to clamav-base.postinst.in
  - Add LocalSocketMode option to clamav-base.postinst.in
  - Add CrossFilesystems option to clamav-base.postinst.in
  - Add ClamukoScannerCount option to clamav-base.postinst.in
  - Add BytecodeSecurity opiton to clamav-base.postinst.in
  - Add DetectionStatsHostID option to clamav-freshclam.postinst.in
  - Add Bytecode option to clamav-freshclam.postinst.in
  - Add MilterSocketGroup option to clamav-milter.postinst.in
  - Add MilterSocketMode option to clamav-milter.postinst.in
  - Add ReportHostname option to clamav-milter.postinst.in
  - Bump libclamav SO version to 6.1.0 in libclamav6.install
  - Drop clamdmon from clamav.examples (no longer shipped by upstream)
  - Drop libclamav.a from libclamav-dev.install (not built by upstream)
  - Update SO version for lintian override for libclamav6
  - Add new Bytecode Testing Tool, usr/bin/clambc, to clamav.install
  - Add build-depends on python and python-setuptools for new test suite
  - Update debian/copyright for the embedded copy of llvm (using the system
    llvm is not currently feasible)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;; Maintainer:  The LLVM team, http://llvm.org/
 
2
;; Description: Major mode for TableGen description files (part of LLVM project)
 
3
;; Updated:     2007-12-18
 
4
 
 
5
(require 'comint)
 
6
(require 'custom)
 
7
(require 'ansi-color)
 
8
 
 
9
;; Create mode-specific tables.
 
10
(defvar td-decorators-face 'td-decorators-face
 
11
  "Face method decorators.")
 
12
(make-face 'td-decorators-face)
 
13
 
 
14
(defvar tablegen-font-lock-keywords
 
15
  (let ((kw (mapconcat 'identity
 
16
                       '("class" "defm" "def" "field" "include" "in"
 
17
                         "let" "multiclass")
 
18
                       "\\|"))
 
19
        (type-kw (mapconcat 'identity
 
20
                            '("bit" "bits" "code" "dag" "int" "list" "string")
 
21
                            "\\|"))
 
22
        )
 
23
    (list
 
24
     ;; Comments
 
25
;;     '("\/\/" . font-lock-comment-face)
 
26
     ;; Strings
 
27
     '("\"[^\"]+\"" . font-lock-string-face)
 
28
     ;; Hex constants
 
29
     '("\\<0x[0-9A-Fa-f]+\\>" . font-lock-preprocessor-face)
 
30
     ;; Binary constants
 
31
     '("\\<0b[01]+\\>" . font-lock-preprocessor-face)
 
32
     ;; Integer literals
 
33
     '("\\<[-]?[0-9]+\\>" . font-lock-preprocessor-face)
 
34
     ;; Floating point constants
 
35
     '("\\<[-+]?[0-9]+\.[0-9]*\([eE][-+]?[0-9]+\)?\\>" . font-lock-preprocessor-face)
 
36
 
 
37
     '("^[ \t]*\\(@.+\\)" 1 'td-decorators-face)
 
38
     ;; Keywords
 
39
     (cons (concat "\\<\\(" kw "\\)\\>[ \n\t(]") 1)
 
40
 
 
41
     ;; Type keywords
 
42
     (cons (concat "\\<\\(" type-kw "\\)[ \n\t(]") 1)
 
43
     ))
 
44
  "Additional expressions to highlight in TableGen mode.")
 
45
(put 'tablegen-mode 'font-lock-defaults '(tablegen-font-lock-keywords))
 
46
 
 
47
;; ---------------------- Syntax table ---------------------------
 
48
;; Shamelessly ripped from jasmin.el
 
49
;; URL: http://www.neilvandyke.org/jasmin-emacs/jasmin.el
 
50
 
 
51
(defvar tablegen-mode-syntax-table nil
 
52
  "Syntax table used in `tablegen-mode' buffers.")
 
53
(when (not tablegen-mode-syntax-table)
 
54
  (setq tablegen-mode-syntax-table (make-syntax-table))
 
55
  ;; whitespace (` ')
 
56
  (modify-syntax-entry ?\   " "      tablegen-mode-syntax-table)
 
57
  (modify-syntax-entry ?\t  " "      tablegen-mode-syntax-table)
 
58
  (modify-syntax-entry ?\r  " "      tablegen-mode-syntax-table)
 
59
  (modify-syntax-entry ?\n  " "      tablegen-mode-syntax-table)
 
60
  (modify-syntax-entry ?\f  " "      tablegen-mode-syntax-table)
 
61
  ;; word constituents (`w')
 
62
  (modify-syntax-entry ?\%  "w"      tablegen-mode-syntax-table)
 
63
  (modify-syntax-entry ?\_  "w"      tablegen-mode-syntax-table)
 
64
  ;; comments
 
65
  (modify-syntax-entry ?/   ". 124b" tablegen-mode-syntax-table)
 
66
  (modify-syntax-entry ?*   ". 23"   tablegen-mode-syntax-table)
 
67
  (modify-syntax-entry ?\n  "> b"    tablegen-mode-syntax-table)
 
68
  ;; open paren (`(')
 
69
  (modify-syntax-entry ?\(  "("      tablegen-mode-syntax-table)
 
70
  (modify-syntax-entry ?\[  "("      tablegen-mode-syntax-table)
 
71
  (modify-syntax-entry ?\{  "("      tablegen-mode-syntax-table)
 
72
  (modify-syntax-entry ?\<  "("      tablegen-mode-syntax-table)
 
73
  ;; close paren (`)')
 
74
  (modify-syntax-entry ?\)  ")"      tablegen-mode-syntax-table)
 
75
  (modify-syntax-entry ?\]  ")"      tablegen-mode-syntax-table)
 
76
  (modify-syntax-entry ?\}  ")"      tablegen-mode-syntax-table)
 
77
  (modify-syntax-entry ?\>  ")"      tablegen-mode-syntax-table)
 
78
  ;; string quote ('"')
 
79
  (modify-syntax-entry ?\"  "\""     tablegen-mode-syntax-table)
 
80
  )
 
81
 
 
82
;; --------------------- Abbrev table -----------------------------
 
83
 
 
84
(defvar tablegen-mode-abbrev-table nil
 
85
  "Abbrev table used while in TableGen mode.")
 
86
(define-abbrev-table 'tablegen-mode-abbrev-table ())
 
87
 
 
88
(defvar tablegen-mode-hook nil)
 
89
(defvar tablegen-mode-map nil)   ; Create a mode-specific keymap.
 
90
 
 
91
(if (not tablegen-mode-map)
 
92
    ()  ; Do not change the keymap if it is already set up.
 
93
  (setq tablegen-mode-map (make-sparse-keymap))
 
94
  (define-key tablegen-mode-map "\t"  'tab-to-tab-stop)
 
95
  (define-key tablegen-mode-map "\es" 'center-line)
 
96
  (define-key tablegen-mode-map "\eS" 'center-paragraph))
 
97
 
 
98
(defun tablegen-mode ()
 
99
  "Major mode for editing TableGen description files.
 
100
  \\{tablegen-mode-map}
 
101
  Runs tablegen-mode-hook on startup."
 
102
  (interactive)
 
103
  (kill-all-local-variables)
 
104
  (use-local-map tablegen-mode-map)      ; Provides the local keymap.
 
105
  (make-local-variable 'font-lock-defaults)
 
106
  (setq major-mode 'tablegen-mode        ; This is how describe-mode
 
107
                                         ;   finds the doc string to print.
 
108
        mode-name             "TableGen" ; This name goes into the modeline.
 
109
        local-abbrev-table    tablegen-mode-abbrev-table
 
110
        font-lock-defaults    `(tablegen-font-lock-keywords)
 
111
        require-final-newline t
 
112
        )
 
113
 
 
114
  (set-syntax-table tablegen-mode-syntax-table)
 
115
  (make-local-variable 'comment-start)
 
116
  (setq comment-start "//")
 
117
  (run-hooks 'tablegen-mode-hook))       ; Finally, this permits the user to
 
118
                                         ;   customize the mode with a hook.
 
119
 
 
120
;; Associate .td files with tablegen-mode
 
121
(setq auto-mode-alist (append '(("\\.td$" . tablegen-mode)) auto-mode-alist))
 
122
 
 
123
(provide 'tablegen-mode)
 
124
;; end of tablegen-mode.el