Update copyright notices for 2013.
[bpt/emacs.git] / lisp / progmodes / m4-mode.el
CommitLineData
0e8ab974
RS
1;;; m4-mode.el --- m4 code editing commands for Emacs
2
ab422c4d 3;; Copyright (C) 1996-1997, 2001-2013 Free Software Foundation, Inc.
0e8ab974 4
85d27e9b
RS
5;; Author: Andrew Csillag <drew_csillag@geocities.com>
6;; Maintainer: Andrew Csillag <drew_csillag@geocities.com>
0e8ab974
RS
7;; Keywords: languages, faces
8
9;; This file is part of GNU Emacs.
10
b1fc2b50 11;; GNU Emacs is free software: you can redistribute it and/or modify
0e8ab974 12;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
0e8ab974
RS
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
b1fc2b50 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
0e8ab974
RS
23
24;;; Commentary:
25
6209bd8c 26;; A smart editing mode for m4 macro definitions. It seems to have most of the
0e8ab974
RS
27;; syntax right (sexp motion commands work, but function motion commands don't).
28;; It also sets the font-lock syntax stuff for colorization
29
30;; To Do's:
31
32;; * want to make m4-m4-(buffer|region) look sorta like M-x compile look&feel ?
33;; * sexp motion commands don't seem to work right
34
a1506d29 35;;; Thanks:
0e8ab974 36;;; to Akim Demaille and Terry Jones for the bug reports
9108fd3a
RS
37;;; to Simon Marshall for the regexp tip
38;;; to Martin Buchholz for some general fixes
0e8ab974
RS
39
40;;; Code:
41
e4df16d0
SE
42(defgroup m4 nil
43 "m4 code editing commands for Emacs."
8ec3bce0 44 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
e4df16d0
SE
45 :prefix "m4-"
46 :group 'languages)
47
6209bd8c
JPW
48(defcustom m4-program
49 (cond
9108fd3a
RS
50 ((file-exists-p "/usr/local/bin/m4") "/usr/local/bin/m4")
51 ((file-exists-p "/usr/bin/m4") "/usr/bin/m4")
52 ((file-exists-p "/bin/m4") "/bin/m4")
53 ((file-exists-p "/usr/ccs/bin/m4") "/usr/ccs/bin/m4")
e4df16d0 54 ( t "m4")
9108fd3a 55 )
e4df16d0
SE
56 "File name of the m4 executable."
57 :type 'file
58 :group 'm4)
9108fd3a
RS
59
60;;options to m4
e4df16d0
SE
61(defcustom m4-program-options nil
62 "Options to pass to `m4-program'."
63 :type '(repeat string)
64 :group 'm4)
65
9108fd3a
RS
66;;to use --prefix-builtins, you can use
67;;(defconst m4-program-options '("-P"))
68;;or
69;;(defconst m4-program-options '("--prefix-builtins"))
0e8ab974 70
0e8ab974
RS
71(defvar m4-font-lock-keywords
72 `(
9108fd3a
RS
73 ("\\(\\b\\(m4_\\)?dnl\\b\\|^\\#\\).*$" . font-lock-comment-face)
74; ("\\(\\bdnl\\b\\|\\bm4_dnl\\b\\|^\\#\\).*$" . font-lock-comment-face)
75 ("\\$[*#@0-9]" . font-lock-variable-name-face)
0f6db76a
RS
76 ("\\\$\\\@" . font-lock-variable-name-face)
77 ("\\\$\\\*" . font-lock-variable-name-face)
0e8ab974 78 ("\\b\\(builtin\\|change\\(com\\|quote\\|word\\)\\|d\\(e\\(bug\\(file\\|mode\\)\\|cr\\|f\\(ine\\|n\\)\\)\\|iv\\(ert\\|num\\)\\|nl\\|umpdef\\)\\|e\\(rrprint\\|syscmd\\|val\\)\\|f\\(ile\\|ormat\\)\\|gnu\\|i\\(f\\(def\\|else\\)\\|n\\(c\\(lude\\|r\\)\\|d\\(ex\\|ir\\)\\)\\)\\|l\\(en\\|ine\\)\\|m\\(4\\(exit\\|wrap\\)\\|aketemp\\)\\|p\\(atsubst\\|opdef\\|ushdef\\)\\|regexp\\|s\\(hift\\|include\\|ubstr\\|ys\\(cmd\\|val\\)\\)\\|tra\\(ceo\\(ff\\|n\\)\\|nslit\\)\\|un\\(d\\(efine\\|ivert\\)\\|ix\\)\\)\\b" . font-lock-keyword-face)
6209bd8c
JPW
79 ("\\b\\(m4_\\(builtin\\|change\\(com\\|quote\\|word\\)\\|d\\(e\\(bug\\(file\\|mode\\)\\|cr\\|f\\(ine\\|n\\)\\)\\|iv\\(ert\\|num\\)\\|nl\\|umpdef\\)\\|e\\(rrprint\\|syscmd\\|val\\)\\|f\\(ile\\|ormat\\)\\|i\\(f\\(def\\|else\\)\\|n\\(c\\(lude\\|r\\)\\|d\\(ex\\|ir\\)\\)\\)\\|l\\(en\\|ine\\)\\|m\\(4\\(_undefine\\|exit\\|wrap\\)\\|aketemp\\)\\|p\\(atsubst\\|opdef\\|ushdef\\)\\|regexp\\|s\\(hift\\|include\\|ubstr\\|ys\\(cmd\\|val\\)\\)\\|tra\\(ceo\\(ff\\|n\\)\\|nslit\\)\\|undivert\\)\\)\\b" . font-lock-keyword-face))
80 "Default font-lock-keywords for `m4 mode'.")
0e8ab974 81
e4df16d0 82(defcustom m4-mode-hook nil
fb7ada5f 83 "Hook called by `m4-mode'."
e4df16d0
SE
84 :type 'hook
85 :group 'm4)
86
0e8ab974
RS
87;;this may still need some work
88(defvar m4-mode-syntax-table nil
6209bd8c 89 "Syntax table used while in `m4-mode'.")
0e8ab974
RS
90(setq m4-mode-syntax-table (make-syntax-table))
91(modify-syntax-entry ?` "('" m4-mode-syntax-table)
92(modify-syntax-entry ?' ")`" m4-mode-syntax-table)
93(modify-syntax-entry ?# "<\n" m4-mode-syntax-table)
94(modify-syntax-entry ?\n ">#" m4-mode-syntax-table)
95(modify-syntax-entry ?{ "_" m4-mode-syntax-table)
96(modify-syntax-entry ?} "_" m4-mode-syntax-table)
97(modify-syntax-entry ?* "w" m4-mode-syntax-table)
98(modify-syntax-entry ?_ "w" m4-mode-syntax-table)
0f6db76a 99(modify-syntax-entry ?\" "w" m4-mode-syntax-table)
9108fd3a 100(modify-syntax-entry ?\" "w" m4-mode-syntax-table)
0e8ab974
RS
101
102(defvar m4-mode-map
61acee99
DN
103 (let ((map (make-sparse-keymap))
104 (menu-map (make-sparse-keymap)))
0e8ab974
RS
105 (define-key map "\C-c\C-b" 'm4-m4-buffer)
106 (define-key map "\C-c\C-r" 'm4-m4-region)
107 (define-key map "\C-c\C-c" 'comment-region)
61acee99
DN
108 (define-key map [menu-bar m4-mode] (cons "M4" menu-map))
109 (define-key menu-map [m4c]
110 '(menu-item "Comment Region" comment-region
111 :help "Comment Region"))
112 (define-key menu-map [m4b]
113 '(menu-item "M4 Buffer" m4-m4-buffer
114 :help "Send contents of the current buffer to m4"))
115 (define-key menu-map [m4r]
116 '(menu-item "M4 Region" m4-m4-region
117 :help "Send contents of the current region to m4"))
0e8ab974
RS
118 map))
119
dfdbf5b6 120(defvar m4-mode-abbrev-table nil
6209bd8c 121 "Abbrev table used while in `m4-mode'.")
dfdbf5b6
GM
122
123(unless m4-mode-abbrev-table
124 (define-abbrev-table 'm4-mode-abbrev-table ()))
125
0e8ab974 126(defun m4-m4-buffer ()
6209bd8c 127 "Send contents of the current buffer to m4."
0e8ab974 128 (interactive)
39db15c9
TTN
129 (shell-command-on-region
130 (point-min) (point-max)
131 (mapconcat 'identity (cons m4-program m4-program-options) "\s")
132 "*m4-output*" nil)
5119b7a7 133 (switch-to-buffer-other-window "*m4-output*"))
0e8ab974
RS
134
135(defun m4-m4-region ()
6209bd8c 136 "Send contents of the current region to m4."
0e8ab974 137 (interactive)
39db15c9
TTN
138 (shell-command-on-region
139 (point) (mark)
140 (mapconcat 'identity (cons m4-program m4-program-options) "\s")
141 "*m4-output*" nil)
5119b7a7 142 (switch-to-buffer-other-window "*m4-output*"))
0e8ab974 143
10918533 144;;;###autoload
175069ef
SM
145(define-derived-mode m4-mode prog-mode "m4"
146 "A major mode to edit m4 macro files."
147 :abbrev-table m4-mode-abbrev-table
148 (set (make-local-variable 'comment-start) "#")
149 (set (make-local-variable 'parse-sexp-ignore-comments) t)
150 (set (make-local-variable 'font-lock-defaults) '(m4-font-lock-keywords nil)))
0e8ab974
RS
151
152(provide 'm4-mode)
153;;stuff to play with for debugging
154;(char-to-string (char-syntax ?`))
155
156;;;how I generate the nasty looking regexps at the top
a1506d29
JB
157;;;(make-regexp '("builtin" "changecom" "changequote" "changeword" "debugfile"
158;;; "debugmode" "decr" "define" "defn" "divert" "divnum" "dnl"
0e8ab974 159;;; "dumpdef" "errprint" "esyscmd" "eval" "file" "format" "gnu"
a1506d29
JB
160;;; "ifdef" "ifelse" "include" "incr" "index" "indir" "len" "line"
161;;; "m4exit" "m4wrap" "maketemp" "patsubst" "popdef" "pushdef" "regexp"
162;;; "shift" "sinclude" "substr" "syscmd" "sysval" "traceoff" "traceon"
0e8ab974 163;;; "translit" "undefine" "undivert" "unix"))
a1506d29
JB
164;;;(make-regexp '("m4_builtin" "m4_changecom" "m4_changequote" "m4_changeword"
165;;; "m4_debugfile" "m4_debugmode" "m4_decr" "m4_define" "m4_defn"
166;;; "m4_divert" "m4_divnum" "m4_dnl" "m4_dumpdef" "m4_errprint"
167;;; "m4_esyscmd" "m4_eval" "m4_file" "m4_format" "m4_ifdef" "m4_ifelse"
168;;; "m4_include" "m4_incr" "m4_index" "m4_indir" "m4_len" "m4_line"
169;;; "m4_m4exit" "m4_m4wrap" "m4_maketemp" "m4_patsubst" "m4_popdef"
170;;; "m4_pushdef" "m4_regexp" "m4_shift" "m4_sinclude" "m4_substr"
171;;; "m4_syscmd" "m4_sysval" "m4_traceoff" "m4_traceon" "m4_translit"
0e8ab974
RS
172;;; "m4_m4_undefine" "m4_undivert"))
173
e8af40ee 174;;; m4-mode.el ends here