summaryrefslogtreecommitdiff
path: root/lisp/hi-lock.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@linkov.net>2020-08-07 02:55:00 +0300
committerJuri Linkov <juri@linkov.net>2020-08-07 02:55:00 +0300
commit874e0e7323631a5da61fa5a7fd35d7a3d9c4af61 (patch)
tree0ac7a4ea04fb45c7773eeee6a6412fa6491b3bd4 /lisp/hi-lock.el
parente038a7571ddb9ec2110533fdd1b359150939c58c (diff)
downloademacs-874e0e7323631a5da61fa5a7fd35d7a3d9c4af61.tar.gz
emacs-874e0e7323631a5da61fa5a7fd35d7a3d9c4af61.tar.bz2
emacs-874e0e7323631a5da61fa5a7fd35d7a3d9c4af61.zip
* lisp/hi-lock.el (hi-lock-set-pattern): Display warning on narrow (bug#42609)
Diffstat (limited to 'lisp/hi-lock.el')
-rw-r--r--lisp/hi-lock.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/hi-lock.el b/lisp/hi-lock.el
index a18310322ad..33ca40f8dec 100644
--- a/lisp/hi-lock.el
+++ b/lisp/hi-lock.el
@@ -812,7 +812,9 @@ SPACES-REGEXP is a regexp to substitute spaces in font-lock search."
(setq hi-lock-interactive-patterns
(cdr hi-lock-interactive-patterns)
hi-lock-interactive-lighters
- (cdr hi-lock-interactive-lighters)))))))))
+ (cdr hi-lock-interactive-lighters))))
+ (when (or (> search-start (point-min)) (< search-end (point-max)))
+ (message "Hi-lock added only in range %d-%d" search-start search-end)))))))
(defun hi-lock-set-file-patterns (patterns)
"Replace file patterns list with PATTERNS and refontify."