branch: externals/org-modern commit 25594c487e670bd728ef143b4edb39b11803ab3f Author: JD Smith <93749+jdtsm...@users.noreply.github.com> Commit: JD Smith <93749+jdtsm...@users.noreply.github.com>
return nil properly from block-bracket font-lock function --- org-modern-indent.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/org-modern-indent.el b/org-modern-indent.el index b931e6c776..445288f4fa 100644 --- a/org-modern-indent.el +++ b/org-modern-indent.el @@ -65,7 +65,8 @@ the block is flush left in the buffer." (goto-char (match-beginning 0)) (if (eq (length (match-string 1)) 0) (org-modern-indent--block-bracket-flush) - (org-modern-indent--block-bracket-indented)))) + (org-modern-indent--block-bracket-indented))) + nil) (defvar org-modern-indent--block-prefixes (make-hash-table :test 'eq)) (defun org-modern-indent--block-bracket-prefix (prefix)