branch: externals/bnf-mode commit 1da597766fce9d4f8f8c66c802d304b35a011fc2 Author: Serghei Iakovlev <eg...@protonmail.ch> Commit: Serghei Iakovlev <eg...@protonmail.ch>
Update documentation --- test/utils.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/utils.el b/test/utils.el index c204cdb..dcb8992 100644 --- a/test/utils.el +++ b/test/utils.el @@ -68,10 +68,10 @@ decorate each of symbol." (defun get-str-faces (str) "Find contiguous spans of non-default faces in STR. -E.g. for properly fontified Lua string \"local x = 100\" it should return - '(\"local\" font-lock-keyword-face - \"x\" font-lock-variable-name-face - \"100\" font-lock-constant-face)" +E.g. for properly fontified BNF string \"<stm> ::= <decl>\" it should return + '(\"stm\" font-lock-function-name-face + \"::=\" font-lock-constant-face + \"decl\" font-lock-builtin-face)" (let ((pos 0) nextpos result prop newprop)