mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
* doc/lispref/modes.texi (Search-based Fontification): Fix
indentation of (MATCHER . FACESPEC) example.
* doc/misc/cc-mode.texi (Performance Issues): Index
defun-prompt-regexp under variables, not functions.
* lisp/progmodes/autoconf.el (autoconf--symbol, autoconf--macro):
New rx definitions.
(autoconf-definition-regexp): Use an optional second capture group
to indicate a function rather than variable definition. Detect
AC_DEFINE defining a function-like CPP macro. Skip more shell
syntax such as variable ${} expansion and command `` substitution in
AC_DEFINE_UNQUOTED variable. Match AH_VERBATIM, AM_CONDITIONAL, and
AM_MISSING_PROG as defining variables, and AC_DEFUN, AC_DEFUN_ONCE,
AU_ALIAS, and AU_DEFUN as defining functions. Document first
capture group in docstring.
(autoconf-font-lock-keywords): Use autoconf--macro to match more
Autoconf macros, such as those defined in the Autoconf Archive and
Gnulib. Reserve font-lock-function-name-face for function
definitions as determined by autoconf-definition-regexp, and use
font-lock-variable-name-face for the rest instead. Use Font Lock
face symbols directly in place of their corresponding variable.
Fontify M4 changequote primitive only as a standalone symbol.
(autoconf-imenu-generic-expression): Add commentary mentioning new
submenu possibility.
(autoconf-current-defun-function): Update docstring accuracy.
Replace line-end-position with pos-eol since there are no fields.
(autoconf-mode): Define defun-prompt-regexp in terms of
autoconf--macro to support more toplevel macros, such as those
defined in Autoheader, M4sh, etc. Set
open-paren-in-column-0-is-defun-start to nil to avoid false
positives when an Autoconf quote character is in column zero.
* test/lisp/progmodes/autoconf-resources/configure.ac: New file.
* test/lisp/progmodes/autoconf-tests.el
(autoconf-tests-current-defun-function-define)
(autoconf-tests-current-defun-function-subst): Replace character
motion with search.
(autoconf-tests-autoconf-mode-comment-syntax): Ditto. Test both dnl
and # comments. Use syntax-ppss-context.
(autoconf-tests-font-lock): New test.
63 lines
2.1 KiB
EmacsLisp
63 lines
2.1 KiB
EmacsLisp
;;; autoconf-tests.el --- Tests for autoconf.el -*- lexical-binding: t; -*-
|
|
|
|
;; Copyright (C) 2020-2025 Free Software Foundation, Inc.
|
|
|
|
;; Author: Simen Heggestøyl <simenheg@gmail.com>
|
|
;; Keywords:
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
;;; Code:
|
|
|
|
(require 'autoconf)
|
|
(require 'ert)
|
|
(require 'ert-font-lock)
|
|
|
|
(ert-deftest autoconf-tests-current-defun-function-define ()
|
|
(with-temp-buffer
|
|
(autoconf-mode)
|
|
(insert "AC_DEFINE([HAVE_RSVG], [1], [Define to 1 if using librsvg.])")
|
|
(let ((def "HAVE_RSVG"))
|
|
(search-backward def)
|
|
(should (equal (autoconf-current-defun-function) def)))
|
|
(goto-char (point-min))
|
|
(should-not (autoconf-current-defun-function))))
|
|
|
|
(ert-deftest autoconf-tests-current-defun-function-subst ()
|
|
(with-temp-buffer
|
|
(autoconf-mode)
|
|
(insert "AC_SUBST([srcdir])")
|
|
(let ((def "srcdir"))
|
|
(search-backward def)
|
|
(should (equal (autoconf-current-defun-function) "srcdir")))
|
|
(goto-char (point-min))
|
|
(should-not (autoconf-current-defun-function))))
|
|
|
|
(ert-deftest autoconf-tests-autoconf-mode-comment-syntax ()
|
|
(with-temp-buffer
|
|
(autoconf-mode)
|
|
(dolist (start '("dnl" "#"))
|
|
(insert start " Autoconf script for GNU Emacs")
|
|
(should (eq (syntax-ppss-context (syntax-ppss)) 'comment))
|
|
(insert "\n")
|
|
(should-not (syntax-ppss-context (syntax-ppss))))))
|
|
|
|
(ert-font-lock-deftest-file autoconf-tests-font-lock
|
|
"Test `autoconf-mode' font lock."
|
|
autoconf-mode "configure.ac")
|
|
|
|
(provide 'autoconf-tests)
|
|
;;; autoconf-tests.el ends here
|