1 ;;; autoconf.el --- mode for editing Autoconf configure.in files
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 ;; Free Software Foundation, Inc.
6 ;; Author: Dave Love <fx@gnu.org>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; Provides fairly minimal font-lock, imenu and indentation support
27 ;; for editing configure.in files. Only Autoconf syntax is processed.
28 ;; There is no attempt to deal with shell text -- probably that will
31 ;; This is specialized for configure.in files. It doesn't inherit the
32 ;; general M4 stuff from M4 mode.
34 ;; There is also an autoconf-mode.el in existence. That appears to be
35 ;; for editing the Autoconf M4 source, rather than configure.in files.
39 (defvar font-lock-syntactic-keywords
)
41 (defvar autoconf-mode-map
(make-sparse-keymap))
43 (defvar autoconf-mode-hook nil
44 "Hook run by `autoconf-mode'.")
46 (defconst autoconf-definition-regexp
47 "AC_\\(SUBST\\|DEFINE\\(_UNQUOTED\\)?\\)(\\[*\\(\\sw+\\)\\]*")
49 (defvar autoconf-font-lock-keywords
50 `(("\\_<A[CHMS]_\\sw+" . font-lock-keyword-face
)
51 (,autoconf-definition-regexp
52 3 font-lock-function-name-face
)
53 ;; Are any other M4 keywords really appropriate for configure.in,
54 ;; given that we do `dnl'?
55 ("changequote" . font-lock-keyword-face
)))
57 (defvar autoconf-mode-syntax-table
58 (let ((table (make-syntax-table)))
59 (modify-syntax-entry ?
\" "." table
)
60 (modify-syntax-entry ?
\n ">" table
)
61 (modify-syntax-entry ?
# "<" table
)
64 (defvar autoconf-imenu-generic-expression
65 (list (list nil autoconf-definition-regexp
3)))
67 ;; It's not clear how best to implement this.
68 (defun autoconf-current-defun-function ()
69 "Function to use for `add-log-current-defun-function' in Autoconf mode.
70 This version looks back for an AC_DEFINE or AC_SUBST. It will stop
71 searching backwards at another AC_... command."
73 (with-syntax-table (copy-syntax-table autoconf-mode-syntax-table
)
74 (modify-syntax-entry ?_
"w")
75 (if (re-search-backward autoconf-definition-regexp
76 (save-excursion (beginning-of-defun) (point))
78 (match-string-no-properties 3)))))
81 (defun autoconf-mode ()
82 "Major mode for editing Autoconf configure.in files."
84 (kill-all-local-variables)
85 (use-local-map autoconf-mode-map
)
86 (setq major-mode
'autoconf-mode
)
87 (setq mode-name
"Autoconf")
88 (set-syntax-table autoconf-mode-syntax-table
)
89 (set (make-local-variable 'parens-require-spaces
) nil
) ; for M4 arg lists
90 (set (make-local-variable 'defun-prompt-regexp
)
91 "^[ \t]*A[CM]_\\(\\sw\\|\\s_\\)+")
92 (set (make-local-variable 'comment-start
) "dnl ")
93 (set (make-local-variable 'comment-start-skip
) "\\(?:\\<dnl\\|#\\) +")
94 (set (make-local-variable 'syntax-propertize-function
)
95 (syntax-propertize-rules ("\\<dnl\\>" (0 "<"))))
96 (set (make-local-variable 'font-lock-defaults
)
97 `(autoconf-font-lock-keywords nil nil
(("_" .
"w"))))
98 (set (make-local-variable 'imenu-generic-expression
)
99 autoconf-imenu-generic-expression
)
100 (set (make-local-variable 'imenu-syntax-alist
) '(("_" .
"w")))
101 (set (make-local-variable 'indent-line-function
) #'indent-relative
)
102 (set (make-local-variable 'add-log-current-defun-function
)
103 #'autoconf-current-defun-function
)
104 (run-mode-hooks 'autoconf-mode-hook
))
106 (provide 'autoconf-mode
)
109 ;; arch-tag: 4f44778f-2ab3-49a1-a103-f0acb9df2de4
110 ;;; autoconf.el ends here