GNU bug report logs -
#76701
31.0.50; recent regression in [global] font-lock-mode?
Previous Next
Reported by: Madhu <enometh <at> meer.net>
Date: Mon, 3 Mar 2025 03:16:01 UTC
Severity: normal
Found in version 31.0.50
Done: Eli Zaretskii <eliz <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
[I posted a query
https://lists.gnu.org/archive/html/help-gnu-emacs/2025-03/msg00005.html
on help-gnu-emacs but the discussion didn't proceed, so I'm reposting
here]
Attached is a test case named `debug-font-lock-foo-spec-mode.el' which
sets up a minor-mode foo-spec-mode for *.foospec files which
highlights the string "FOO-SPEC" with font-lock-warning-space.
On invoking the following sequence
```
echo FOO-SPEC > /tmp/foo.foospec
emacs -Q -l debug-font-lock-foo-spec-mode.el /tmp/foo.foospec
```
I expect to open "/tmp/foo.foospec" in a buffer and have it fontified
in red. However the buffer ends up with font-lock-mode: nil even
though global-font-lock-mode is t (under emacs -Q).
I think this used to work until recently. Is this a possible
regression or is the testcase flawed because of some recent changes?
--Best Regards, Madhu
[debug-font-lock-foo-spec-mode.el (text/plain, inline)]
(defvar foo-spec-mode-font-lock-keywords
(list
(cons "^FOO-SPEC$" '(0 font-lock-warning-face))))
(defun foo-spec-mode ()
(interactive)
(kill-all-local-variables)
(setq major-mode 'foo-spec-mode)
(setq mode-name "FooSpec")
(setq-local font-lock-defaults '(foo-spec-mode-font-lock-keywords nil t))
(run-hooks 'foo-spec-mode-hook))
(add-to-list 'auto-mode-alist '("\\.foospec$" . foo-spec-mode))
This bug report was last modified 129 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.