From: Gabriel do Nascimento Ribeiro Date: Sat, 23 Sep 2023 07:32:02 +0000 (-0300) Subject: Consider outline-heading-end-regexp in outline-font-lock-keywords X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dc1f18e9d0863a03e00134b36279101f0747fcfb;p=emacs.git Consider outline-heading-end-regexp in outline-font-lock-keywords * lisp/outline.el (outline-font-lock-keywords): Add outline-heading-end-regexp to regexp (bug#66166). --- diff --git a/lisp/outline.el b/lisp/outline.el index 96e0d0df205..b50708c1a7b 100644 --- a/lisp/outline.el +++ b/lisp/outline.el @@ -260,7 +260,7 @@ non-nil and point is located on the heading line.") '( ;; Highlight headings according to the level. (eval . (list (or outline-search-function - (concat "^\\(?:" outline-regexp "\\).*")) + (concat "^\\(?:" outline-regexp "\\).*" outline-heading-end-regexp)) 0 '(if outline-minor-mode (if outline-minor-mode-highlight (list 'face (outline-font-lock-face)))