help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: autoconf-mode fontification


From: Björn Bidar
Subject: Re: autoconf-mode fontification
Date: Thu, 28 Nov 2024 01:33:35 +0200
User-agent: Gnus/5.13 (Gnus v5.13)


Ah I got what was different.

With Emacs -Q I was using the builtin autoconf mode while currently I'm
using the autoconf-mode.el from the autoconf package.

Once I switched over that mode to also use derived-mode and be closer to
what m4-mode does even that one worked again:

;;;###autoload
(define-derived-mode autoconf-mode prog-mode "ac"
  "A major-mode to edit Autoconf files like configure.ac.
\\{autoconf-mode-map}
"
  :syntax-table autoconf-mode-syntax-table
  (setq-local add-log-current-defun-function #'autoconf-current-defun)
  (setq-local comment-start "# ")
  (setq-local parse-sexp-ignore-comments t)
  (setq-local font-lock-defaults '(autoconf-font-lock-keywords nil)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]