Variable: autoconf-mode-abbrev-table
autoconf-mode-abbrev-table is a variable defined in autoconf.el.gz.
Value
#<obarray n=1>
Documentation
Abbrev table for autoconf-mode.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/autoconf.el.gz
;;;###autoload
(define-derived-mode autoconf-mode prog-mode "Autoconf"
"Major mode for editing Autoconf configure.ac files."
(setq-local parens-require-spaces nil) ; for M4 arg lists
;; FIXME: Should indented macro calls really count as defuns?
(setq-local defun-prompt-regexp (rx bol (* (in "\t ")) autoconf--macro))
(setq-local open-paren-in-column-0-is-defun-start nil)
(setq-local comment-start "dnl ")
;; We want to avoid matching "dnl" in other text.
(setq-local comment-start-skip "\\(?:\\(\\W\\|^\\)dnl\\|#\\) +")
(setq-local syntax-propertize-function
(syntax-propertize-rules ("\\<dnl\\>" (0 "<"))))
(setq-local font-lock-defaults '(autoconf-font-lock-keywords))
(setq-local imenu-generic-expression autoconf-imenu-generic-expression)
(setq-local indent-line-function #'indent-relative)
(setq-local add-log-current-defun-function
#'autoconf-current-defun-function))