(latexenc-find-file-coding-system): Don't inherit the EOL part of the
[emacs.git] / lisp / progmodes / autoconf.el
blob908b18b070b1fcc839e97dd63f2e3932d8ebda06
1 ;;; autoconf.el --- mode for editing Autoconf configure.in files
3 ;; Copyright (C) 2000, 2003, 2004 Free Software Foundation, Inc.
5 ;; Author: Dave Love <fx@gnu.org>
6 ;; Keywords: languages
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
25 ;;; Commentary:
27 ;; Provides fairly minimal font-lock, imenu and indentation support
28 ;; for editing configure.in files. Only Autoconf syntax is processed.
29 ;; There is no attempt to deal with shell text -- probably that will
30 ;; always lose.
32 ;; This is specialized for configure.in files. It doesn't inherit the
33 ;; general M4 stuff from M4 mode.
35 ;; There is also an autoconf-mode.el in existence. That appears to be
36 ;; for editing the Autoconf M4 source, rather than configure.in files.
38 ;;; Code:
40 (defvar autoconf-mode-map (make-sparse-keymap))
42 (defvar autoconf-mode-hook nil
43 "Hook run by `autoconf-mode'.")
45 (defconst autoconf-font-lock-syntactic-keywords
46 '(("\\<dnl\\>" 0 '(11))))
48 (defconst autoconf-definition-regexp
49 "AC_\\(SUBST\\|DEFINE\\(_UNQUOTED\\)?\\)(\\(\\sw+\\)")
51 (defvar autoconf-font-lock-keywords
52 `(("A[CHMS]_\\sw+" . font-lock-keyword-face)
53 (,autoconf-definition-regexp
54 3 font-lock-function-name-face)
55 ;; Are any other M4 keywords really appropriate for configure.in,
56 ;; given that we do `dnl'?
57 ("changequote" . font-lock-keyword-face)))
59 (defvar autoconf-mode-syntax-table
60 (let ((table (make-syntax-table)))
61 (modify-syntax-entry ?\" "." table)
62 (modify-syntax-entry ?\n ">" table)
63 (modify-syntax-entry ?# "<" table)
64 table))
66 (defvar autoconf-imenu-generic-expression
67 (list (list nil autoconf-definition-regexp 3)))
69 ;; It's not clear how best to implement this.
70 (defun autoconf-current-defun-function ()
71 "Function to use for `add-log-current-defun-function' in Autoconf mode.
72 This version looks back for an AC_DEFINE or AC_SUBST. It will stop
73 searching backwards at another AC_... command."
74 (save-excursion
75 (with-syntax-table (copy-syntax-table autoconf-mode-syntax-table)
76 (modify-syntax-entry ?_ "w")
77 (if (re-search-backward autoconf-definition-regexp
78 (save-excursion (beginning-of-defun) (point))
80 (match-string-no-properties 3)))))
82 ;;;###autoload
83 (defun autoconf-mode ()
84 "Major mode for editing Autoconf configure.in files."
85 (interactive)
86 (kill-all-local-variables)
87 (use-local-map autoconf-mode-map)
88 (setq major-mode 'autoconf-mode)
89 (setq mode-name "Autoconf")
90 (set-syntax-table autoconf-mode-syntax-table)
91 (set (make-local-variable 'parens-require-spaces) nil) ; for M4 arg lists
92 (set (make-local-variable 'defun-prompt-regexp)
93 "^[ \t]*A[CM]_\\(\\sw\\|\\s_\\)+")
94 (set (make-local-variable 'comment-start) "dnl ")
95 (set (make-local-variable 'comment-start-skip) "\\(?:\\<dnl\\|#\\) +")
96 (set (make-local-variable 'font-lock-syntactic-keywords)
97 autoconf-font-lock-syntactic-keywords)
98 (set (make-local-variable 'font-lock-defaults)
99 `(autoconf-font-lock-keywords nil nil (("_" . "w"))))
100 (set (make-local-variable 'imenu-generic-expression)
101 autoconf-imenu-generic-expression)
102 (set (make-local-variable 'imenu-syntax-alist) '(("_" . "w")))
103 (set (make-local-variable 'indent-line-function) #'indent-relative)
104 (set (make-local-variable 'add-log-current-defun-function)
105 #'autoconf-current-defun-function)
106 (run-mode-hooks 'autoconf-mode-hook))
108 (provide 'autoconf-mode)
110 ;;; arch-tag: 4f44778f-2ab3-49a1-a103-f0acb9df2de4
111 ;;; autoconf.el ends here