1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-05 19:31:02 -08:00

Add ert-font-lock

Add ert-font-lock as well as unit tests and testing resources.
* lisp/emacs-lisp/ert-font-lock.el: New library.
* test/lisp/emacs-lisp/ert-font-lock-resources/broken.js:
* test/lisp/emacs-lisp/ert-font-lock-resources/correct.js:
* test/lisp/emacs-lisp/ert-font-lock-tests.el: Unit tests.
(Bug#67460)
This commit is contained in:
Vladimir Kazanov 2023-11-26 11:48:16 +00:00 committed by Eli Zaretskii
parent fb4b0b30a2
commit c03d3fbf41
4 changed files with 834 additions and 0 deletions

View file

@ -0,0 +1,3 @@
var abc = function(d) {
// ^ wrong-face
};

View file

@ -0,0 +1,3 @@
var abc = function(d) {
// ^ font-lock-variable-name-face
};