diff options
-rw-r--r-- | lisp/hi-lock.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/hi-lock.el b/lisp/hi-lock.el index 65465d3b4c8..b6b0e2a736e 100644 --- a/lisp/hi-lock.el +++ b/lisp/hi-lock.el @@ -447,7 +447,7 @@ highlighting will not update as you type." (hi-lock-set-pattern ;; The \\(?:...\\) grouping construct ensures that a leading ^, +, * or ? ;; or a trailing $ in REGEXP will be interpreted correctly. - (concat "^.*\\(?:" regexp "\\).*$") face)) + (concat "^.*\\(?:" regexp "\\).*\\(?:$\\)\n?") face)) ;;;###autoload |