annotate lisp/hi-lock.el @ 96361:a99299e4d2de

American English spelling fix.
author Glenn Morris <rgm@gnu.org>
date Fri, 27 Jun 2008 02:13:38 +0000
parents ee5932bf781d
children de00a663995a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 36708
diff changeset
1 ;;; hi-lock.el --- minor mode for interactive automatic highlighting
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
2
64762
41bb365f41c4 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64117
diff changeset
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004,
79721
73661ddc7ac7 Add 2008 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 78236
diff changeset
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
5
77343
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
6 ;; Author: David M. Koppelman, koppel@ece.lsu.edu
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
7 ;; Keywords: faces, minor-mode, matching, display
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
8
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
10
94678
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93434
diff changeset
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
94678
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93434
diff changeset
13 ;; the Free Software Foundation, either version 3 of the License, or
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93434
diff changeset
14 ;; (at your option) any later version.
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
15
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
19 ;; GNU General Public License for more details.
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
20
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
94678
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93434
diff changeset
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
23
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 36708
diff changeset
24 ;;; Commentary:
49588
37645a051842 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48256
diff changeset
25 ;;
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
26 ;; With the hi-lock commands text matching interactively entered
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
27 ;; regexp's can be highlighted. For example, `M-x highlight-regexp
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
28 ;; RET clearly RET RET' will highlight all occurrences of `clearly'
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
29 ;; using a yellow background face. New occurrences of `clearly' will
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
30 ;; be highlighted as they are typed. `M-x unhighlight-regexp RET'
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
31 ;; will remove the highlighting. Any existing face can be used for
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
32 ;; highlighting and a set of appropriate faces is provided. The
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
33 ;; regexps can be written into the current buffer in a form that will
77343
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
34 ;; be recognized the next time the corresponding file is read (when
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
35 ;; file patterns is turned on).
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
36 ;;
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
37 ;; Applications:
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
38 ;;
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
39 ;; In program source code highlight a variable to quickly see all
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
40 ;; places it is modified or referenced:
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
41 ;; M-x highlight-regexp ground_contact_switches_closed RET RET
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
42 ;;
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
43 ;; In a shell or other buffer that is showing lots of program
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
44 ;; output, highlight the parts of the output you're interested in:
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
45 ;; M-x highlight-regexp Total execution time [0-9]+ RET hi-blue-b RET
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
46 ;;
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
47 ;; In buffers displaying tables, highlight the lines you're interested in:
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
48 ;; M-x highlight-lines-matching-regexp January 2000 RET hi-black-b RET
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
49 ;;
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
50 ;; When writing text, highlight personal cliches. This can be
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
51 ;; amusing.
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
52 ;; M-x highlight-phrase as can be seen RET RET
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
53 ;;
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
54 ;; Setup:
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
55 ;;
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
56 ;; Put the following code in your .emacs file. This turns on
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
57 ;; hi-lock mode and adds a "Regexp Highlighting" entry
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
58 ;; to the edit menu.
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
59 ;;
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
60 ;; (global-hi-lock-mode 1)
49588
37645a051842 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48256
diff changeset
61 ;;
77343
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
62 ;; To enable the use of patterns found in files (presumably placed
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
63 ;; there by hi-lock) include the following in your .emacs file:
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
64 ;;
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
65 ;; (setq hi-lock-file-patterns-policy 'ask)
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
66 ;;
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
67 ;; If you get tired of being asked each time a file is loaded replace
77420
0e63897240ee (hi-lock-file-patterns-policy): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 77384
diff changeset
68 ;; `ask' with a function that returns t if patterns should be read.
77343
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
69 ;;
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
70 ;; You might also want to bind the hi-lock commands to more
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
71 ;; finger-friendly sequences:
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
72
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
73 ;; (define-key hi-lock-map "\C-z\C-h" 'highlight-lines-matching-regexp)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
74 ;; (define-key hi-lock-map "\C-zi" 'hi-lock-find-patterns)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
75 ;; (define-key hi-lock-map "\C-zh" 'highlight-regexp)
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
76 ;; (define-key hi-lock-map "\C-zp" 'highlight-phrase)
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
77 ;; (define-key hi-lock-map "\C-zr" 'unhighlight-regexp)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
78 ;; (define-key hi-lock-map "\C-zb" 'hi-lock-write-interactive-patterns))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
79
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
80 ;; See the documentation for hi-lock-mode `C-h f hi-lock-mode' for
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
81 ;; additional instructions.
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
82
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
83 ;; Sample file patterns:
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
84
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
85 ; Hi-lock: (("^;;; .*" (0 (quote hi-black-hb) t)))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
86 ; Hi-lock: ( ("make-variable-buffer-\\(local\\)" (0 font-lock-keyword-face)(1 'italic append)))))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
87 ; Hi-lock: end
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
88
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
89 ;;; Code:
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
90
30584
b823f1c83a00 (toplevel): Require font-lock.
Eli Zaretskii <eliz@gnu.org>
parents: 30565
diff changeset
91 (eval-and-compile
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
92 (require 'font-lock))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
93
66960
29560f2ff8ed (hi-lock): Rename this defgroup from
Juri Linkov <juri@jurta.org>
parents: 66833
diff changeset
94 (defgroup hi-lock nil
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
95 "Interactively add and remove font-lock patterns for highlighting text."
66960
29560f2ff8ed (hi-lock): Rename this defgroup from
Juri Linkov <juri@jurta.org>
parents: 66833
diff changeset
96 :link '(custom-manual "(emacs)Highlight Interactively")
29560f2ff8ed (hi-lock): Rename this defgroup from
Juri Linkov <juri@jurta.org>
parents: 66833
diff changeset
97 :group 'font-lock)
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
98
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
99 (defcustom hi-lock-file-patterns-range 10000
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
100 "Limit of search in a buffer for hi-lock patterns.
68559
695ee8cc49c1 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-face-buffer,
Juanma Barranquero <lekktu@gmail.com>
parents: 67768
diff changeset
101 When a file is visited and hi-lock mode is on, patterns starting
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
102 up to this limit are added to font-lock's patterns. See documentation
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
103 of functions `hi-lock-mode' and `hi-lock-find-patterns'."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
104 :type 'integer
66960
29560f2ff8ed (hi-lock): Rename this defgroup from
Juri Linkov <juri@jurta.org>
parents: 66833
diff changeset
105 :group 'hi-lock)
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
106
67765
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
107 (defcustom hi-lock-highlight-range 200000
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
108 "Size of area highlighted by hi-lock when font-lock not active.
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
109 Font-lock is not active in buffers that do their own highlighting,
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
110 such as the buffer created by `list-colors-display'. In those buffers
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
111 hi-lock patterns will only be applied over a range of
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
112 `hi-lock-highlight-range' characters. If font-lock is active then
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
113 highlighting will be applied throughout the buffer."
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
114 :type 'integer
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
115 :group 'hi-lock)
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
116
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
117 (defcustom hi-lock-exclude-modes
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
118 '(rmail-mode mime/viewer-mode gnus-article-mode)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
119 "List of major modes in which hi-lock will not run.
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
120 For security reasons since font lock patterns can specify function
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
121 calls."
35215
2be11f207ca8 (hi-lock-exclude-modes): Fix :type.
Dave Love <fx@gnu.org>
parents: 33974
diff changeset
122 :type '(repeat symbol)
66960
29560f2ff8ed (hi-lock): Rename this defgroup from
Juri Linkov <juri@jurta.org>
parents: 66833
diff changeset
123 :group 'hi-lock)
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
124
77553
871bc98458d9 (hi-lock-file-patterns-policy): Default to `ask'.
Richard M. Stallman <rms@gnu.org>
parents: 77420
diff changeset
125 (defcustom hi-lock-file-patterns-policy 'ask
77343
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
126 "Specify when hi-lock should use patterns found in file.
77420
0e63897240ee (hi-lock-file-patterns-policy): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 77384
diff changeset
127 If `ask', prompt when patterns found in buffer; if bound to a function,
77343
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
128 use patterns when function returns t (function is called with patterns
77420
0e63897240ee (hi-lock-file-patterns-policy): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 77384
diff changeset
129 as first argument); if nil or `never' or anything else, don't use file
77384
4c5740f0be2c (hi-lock-file-patterns-policy): Make it a defcustom, and give it the
Glenn Morris <rgm@gnu.org>
parents: 77343
diff changeset
130 patterns."
4c5740f0be2c (hi-lock-file-patterns-policy): Make it a defcustom, and give it the
Glenn Morris <rgm@gnu.org>
parents: 77343
diff changeset
131 :type '(choice (const :tag "Do not use file patterns" never)
4c5740f0be2c (hi-lock-file-patterns-policy): Make it a defcustom, and give it the
Glenn Morris <rgm@gnu.org>
parents: 77343
diff changeset
132 (const :tag "Ask about file patterns" ask)
4c5740f0be2c (hi-lock-file-patterns-policy): Make it a defcustom, and give it the
Glenn Morris <rgm@gnu.org>
parents: 77343
diff changeset
133 (function :tag "Function to check file patterns"))
4c5740f0be2c (hi-lock-file-patterns-policy): Make it a defcustom, and give it the
Glenn Morris <rgm@gnu.org>
parents: 77343
diff changeset
134 :group 'hi-lock
4c5740f0be2c (hi-lock-file-patterns-policy): Make it a defcustom, and give it the
Glenn Morris <rgm@gnu.org>
parents: 77343
diff changeset
135 :version "22.1")
4c5740f0be2c (hi-lock-file-patterns-policy): Make it a defcustom, and give it the
Glenn Morris <rgm@gnu.org>
parents: 77343
diff changeset
136
4c5740f0be2c (hi-lock-file-patterns-policy): Make it a defcustom, and give it the
Glenn Morris <rgm@gnu.org>
parents: 77343
diff changeset
137 ;; It can have a function value.
4c5740f0be2c (hi-lock-file-patterns-policy): Make it a defcustom, and give it the
Glenn Morris <rgm@gnu.org>
parents: 77343
diff changeset
138 (put 'hi-lock-file-patterns-policy 'risky-local-variable t)
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
139
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
140 (defgroup hi-lock-faces nil
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
141 "Faces for hi-lock."
66960
29560f2ff8ed (hi-lock): Rename this defgroup from
Juri Linkov <juri@jurta.org>
parents: 66833
diff changeset
142 :group 'hi-lock
29560f2ff8ed (hi-lock): Rename this defgroup from
Juri Linkov <juri@jurta.org>
parents: 66833
diff changeset
143 :group 'faces)
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
144
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
145 (defface hi-yellow
61398
499e1a6b0822 (hi-green): Fix face spec.
Kim F. Storm <storm@cua.dk>
parents: 61394
diff changeset
146 '((((min-colors 88) (background dark))
61394
31aa9a390538 * mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents: 60902
diff changeset
147 (:background "yellow1" :foreground "black"))
31aa9a390538 * mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents: 60902
diff changeset
148 (((background dark)) (:background "yellow" :foreground "black"))
31aa9a390538 * mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents: 60902
diff changeset
149 (((min-colors 88)) (:background "yellow1"))
30896
ca514eff4924 (hi-yellow, hi-pink, hi-green, hi-blue): Force the foreground color to
Miles Bader <miles@gnu.org>
parents: 30590
diff changeset
150 (t (:background "yellow")))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
151 "Default face for hi-lock mode."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
152 :group 'hi-lock-faces)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
153
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
154 (defface hi-pink
33780
00803fb0f58e (hi-lock-refontify): Don't call non-existent
Gerd Moellmann <gerd@gnu.org>
parents: 31745
diff changeset
155 '((((background dark)) (:background "pink" :foreground "black"))
30896
ca514eff4924 (hi-yellow, hi-pink, hi-green, hi-blue): Force the foreground color to
Miles Bader <miles@gnu.org>
parents: 30590
diff changeset
156 (t (:background "pink")))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
157 "Face for hi-lock mode."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
158 :group 'hi-lock-faces)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
159
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
160 (defface hi-green
61398
499e1a6b0822 (hi-green): Fix face spec.
Kim F. Storm <storm@cua.dk>
parents: 61394
diff changeset
161 '((((min-colors 88) (background dark))
61394
31aa9a390538 * mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents: 60902
diff changeset
162 (:background "green1" :foreground "black"))
31aa9a390538 * mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents: 60902
diff changeset
163 (((background dark)) (:background "green" :foreground "black"))
61398
499e1a6b0822 (hi-green): Fix face spec.
Kim F. Storm <storm@cua.dk>
parents: 61394
diff changeset
164 (((min-colors 88)) (:background "green1"))
30896
ca514eff4924 (hi-yellow, hi-pink, hi-green, hi-blue): Force the foreground color to
Miles Bader <miles@gnu.org>
parents: 30590
diff changeset
165 (t (:background "green")))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
166 "Face for hi-lock mode."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
167 :group 'hi-lock-faces)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
168
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
169 (defface hi-blue
33780
00803fb0f58e (hi-lock-refontify): Don't call non-existent
Gerd Moellmann <gerd@gnu.org>
parents: 31745
diff changeset
170 '((((background dark)) (:background "light blue" :foreground "black"))
30896
ca514eff4924 (hi-yellow, hi-pink, hi-green, hi-blue): Force the foreground color to
Miles Bader <miles@gnu.org>
parents: 30590
diff changeset
171 (t (:background "light blue")))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
172 "Face for hi-lock mode."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
173 :group 'hi-lock-faces)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
174
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
175 (defface hi-black-b
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
176 '((t (:weight bold)))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
177 "Face for hi-lock mode."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
178 :group 'hi-lock-faces)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
179
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
180 (defface hi-blue-b
61394
31aa9a390538 * mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents: 60902
diff changeset
181 '((((min-colors 88)) (:weight bold :foreground "blue1"))
31aa9a390538 * mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents: 60902
diff changeset
182 (t (:weight bold :foreground "blue")))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
183 "Face for hi-lock mode."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
184 :group 'hi-lock-faces)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
185
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
186 (defface hi-green-b
61394
31aa9a390538 * mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents: 60902
diff changeset
187 '((((min-colors 88)) (:weight bold :foreground "green1"))
31aa9a390538 * mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents: 60902
diff changeset
188 (t (:weight bold :foreground "green")))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
189 "Face for hi-lock mode."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
190 :group 'hi-lock-faces)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
191
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
192 (defface hi-red-b
61394
31aa9a390538 * mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents: 60902
diff changeset
193 '((((min-colors 88)) (:weight bold :foreground "red1"))
31aa9a390538 * mh-customize.el (mh-speedbar-selected-folder-face): Special case
Dan Nicolaescu <dann@ics.uci.edu>
parents: 60902
diff changeset
194 (t (:weight bold :foreground "red")))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
195 "Face for hi-lock mode."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
196 :group 'hi-lock-faces)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
197
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
198 (defface hi-black-hb
31745
d311d1655d29 (hi-black-hb):
Miles Bader <miles@gnu.org>
parents: 30896
diff changeset
199 '((t (:weight bold :height 1.67 :inherit variable-pitch)))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
200 "Face for hi-lock mode."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
201 :group 'hi-lock-faces)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
202
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
203 (defvar hi-lock-file-patterns nil
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
204 "Patterns found in file for hi-lock. Should not be changed.")
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
205
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
206 (defvar hi-lock-interactive-patterns nil
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
207 "Patterns provided to hi-lock by user. Should not be changed.")
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
208
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
209 (defvar hi-lock-face-history
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
210 (list "hi-yellow" "hi-pink" "hi-green" "hi-blue" "hi-black-b"
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
211 "hi-blue-b" "hi-red-b" "hi-green-b" "hi-black-hb")
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
212 "History list of faces for hi-lock interactive functions.")
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
213
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
214 ;(dolist (f hi-lock-face-history) (unless (facep f) (error "%s not a face" f)))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
215
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
216 (defvar hi-lock-regexp-history nil
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
217 "History of regexps used for interactive fontification.")
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
218
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
219 (defvar hi-lock-file-patterns-prefix "Hi-lock"
77343
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
220 "Search target for finding hi-lock patterns at top of file.")
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
221
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
222 (defvar hi-lock-archaic-interface-message-used nil
67768
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
223 "True if user alerted that `global-hi-lock-mode' is now the global switch.
68559
695ee8cc49c1 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-face-buffer,
Juanma Barranquero <lekktu@gmail.com>
parents: 67768
diff changeset
224 Earlier versions of hi-lock used `hi-lock-mode' as the global switch;
67768
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
225 the message is issued if it appears that `hi-lock-mode' is used assuming
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
226 that older functionality. This variable avoids multiple reminders.")
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
227
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
228 (defvar hi-lock-archaic-interface-deduce nil
67768
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
229 "If non-nil, sometimes assume that `hi-lock-mode' means `global-hi-lock-mode'.
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
230 Assumption is made if `hi-lock-mode' used in the *scratch* buffer while
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
231 a library is being loaded.")
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
232
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
233 (make-variable-buffer-local 'hi-lock-interactive-patterns)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
234 (put 'hi-lock-interactive-patterns 'permanent-local t)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
235 (make-variable-buffer-local 'hi-lock-regexp-history)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
236 (put 'hi-lock-regexp-history 'permanent-local t)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
237 (make-variable-buffer-local 'hi-lock-file-patterns)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
238 (put 'hi-lock-file-patterns 'permanent-local t)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
239
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
240 (defvar hi-lock-menu (make-sparse-keymap "Hi Lock")
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
241 "Menu for hi-lock mode.")
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
242
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
243 (define-key-after hi-lock-menu [highlight-regexp]
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
244 '(menu-item "Highlight Regexp..." highlight-regexp
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
245 :help "Highlight text matching PATTERN (a regexp)."))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
246
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
247 (define-key-after hi-lock-menu [highlight-phrase]
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
248 '(menu-item "Highlight Phrase..." highlight-phrase
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
249 :help "Highlight text matching PATTERN (a regexp processed to match phrases)."))
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
250
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
251 (define-key-after hi-lock-menu [highlight-lines-matching-regexp]
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
252 '(menu-item "Highlight Lines..." highlight-lines-matching-regexp
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
253 :help "Highlight lines containing match of PATTERN (a regexp).."))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
254
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
255 (define-key-after hi-lock-menu [unhighlight-regexp]
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
256 '(menu-item "Remove Highlighting..." unhighlight-regexp
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
257 :help "Remove previously entered highlighting pattern."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
258 :enable hi-lock-interactive-patterns))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
259
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
260 (define-key-after hi-lock-menu [hi-lock-write-interactive-patterns]
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
261 '(menu-item "Patterns to Buffer" hi-lock-write-interactive-patterns
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
262 :help "Insert interactively added REGEXPs into buffer at point."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
263 :enable hi-lock-interactive-patterns))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
264
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
265 (define-key-after hi-lock-menu [hi-lock-find-patterns]
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
266 '(menu-item "Patterns from Buffer" hi-lock-find-patterns
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
267 :help "Use patterns (if any) near top of buffer."))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
268
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
269 (defvar hi-lock-map (make-sparse-keymap "Hi Lock")
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
270 "Key map for hi-lock.")
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
271
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
272 (define-key hi-lock-map "\C-xwi" 'hi-lock-find-patterns)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
273 (define-key hi-lock-map "\C-xwl" 'highlight-lines-matching-regexp)
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
274 (define-key hi-lock-map "\C-xwp" 'highlight-phrase)
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
275 (define-key hi-lock-map "\C-xwh" 'highlight-regexp)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
276 (define-key hi-lock-map "\C-xwr" 'unhighlight-regexp)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
277 (define-key hi-lock-map "\C-xwb" 'hi-lock-write-interactive-patterns)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
278
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
279 ;; Visible Functions
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
280
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
281 ;;;###autoload
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
282 (define-minor-mode hi-lock-mode
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
283 "Toggle minor mode for interactively adding font-lock highlighting patterns.
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
284
67768
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
285 If ARG positive, turn hi-lock on. Issuing a hi-lock command will also
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
286 turn hi-lock on. To turn hi-lock on in all buffers use
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
287 `global-hi-lock-mode' or in your .emacs file (global-hi-lock-mode 1).
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
288 When hi-lock is turned on, a \"Regexp Highlighting\" submenu is added
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
289 to the \"Edit\" menu. The commands in the submenu, which can be
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
290 called interactively, are:
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
291
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
292 \\[highlight-regexp] REGEXP FACE
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
293 Highlight matches of pattern REGEXP in current buffer with FACE.
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
294
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
295 \\[highlight-phrase] PHRASE FACE
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
296 Highlight matches of phrase PHRASE in current buffer with FACE.
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
297 (PHRASE can be any REGEXP, but spaces will be replaced by matches
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
298 to whitespace and initial lower-case letters will become case insensitive.)
49588
37645a051842 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48256
diff changeset
299
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
300 \\[highlight-lines-matching-regexp] REGEXP FACE
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
301 Highlight lines containing matches of REGEXP in current buffer with FACE.
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
302
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
303 \\[unhighlight-regexp] REGEXP
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
304 Remove highlighting on matches of REGEXP in current buffer.
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
305
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
306 \\[hi-lock-write-interactive-patterns]
77343
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
307 Write active REGEXPs into buffer as comments (if possible). They may
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
308 be read the next time file is loaded or when the \\[hi-lock-find-patterns] command
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
309 is issued. The inserted regexps are in the form of font lock keywords.
84872
b39ee0f351f1 (hi-lock-write-interactive-patterns): Use `mapc' rather than `mapcar'.
Juanma Barranquero <lekktu@gmail.com>
parents: 82857
diff changeset
310 (See `font-lock-keywords'.) They may be edited and re-loaded with \\[hi-lock-find-patterns],
93434
d3e8f7c16304 (hi-lock-mode): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 87649
diff changeset
311 any valid `font-lock-keywords' form is acceptable. When a file is
d3e8f7c16304 (hi-lock-mode): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 87649
diff changeset
312 loaded the patterns are read if `hi-lock-file-patterns-policy' is
77343
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
313 'ask and the user responds y to the prompt, or if
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
314 `hi-lock-file-patterns-policy' is bound to a function and that
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
315 function returns t.
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
316
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
317 \\[hi-lock-find-patterns]
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
318 Re-read patterns stored in buffer (in the format produced by \\[hi-lock-write-interactive-patterns]).
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
319
77343
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
320 When hi-lock is started and if the mode is not excluded or patterns
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
321 rejected, the beginning of the buffer is searched for lines of the
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
322 form:
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
323 Hi-lock: FOO
68559
695ee8cc49c1 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-face-buffer,
Juanma Barranquero <lekktu@gmail.com>
parents: 67768
diff changeset
324 where FOO is a list of patterns. These are added to the font lock
695ee8cc49c1 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-face-buffer,
Juanma Barranquero <lekktu@gmail.com>
parents: 67768
diff changeset
325 keywords already present. The patterns must start before position
695ee8cc49c1 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-face-buffer,
Juanma Barranquero <lekktu@gmail.com>
parents: 67768
diff changeset
326 \(number of characters into buffer) `hi-lock-file-patterns-range'.
695ee8cc49c1 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-face-buffer,
Juanma Barranquero <lekktu@gmail.com>
parents: 67768
diff changeset
327 Patterns will be read until
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
328 Hi-lock: end
68559
695ee8cc49c1 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-face-buffer,
Juanma Barranquero <lekktu@gmail.com>
parents: 67768
diff changeset
329 is found. A mode is excluded if it's in the list `hi-lock-exclude-modes'."
67112
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
330 :group 'hi-lock
67768
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
331 :lighter (:eval (if (or hi-lock-interactive-patterns
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
332 hi-lock-file-patterns)
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
333 " Hi" ""))
67112
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
334 :global nil
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
335 :keymap hi-lock-map
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
336 (when (and (equal (buffer-name) "*scratch*")
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
337 load-in-progress
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
338 (not (interactive-p))
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
339 (not hi-lock-archaic-interface-message-used))
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
340 (setq hi-lock-archaic-interface-message-used t)
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
341 (if hi-lock-archaic-interface-deduce
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
342 (global-hi-lock-mode hi-lock-mode)
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
343 (warn
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
344 "Possible archaic use of (hi-lock-mode).
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
345 Use (global-hi-lock-mode 1) in .emacs to enable hi-lock for all buffers,
67768
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
346 use (hi-lock-mode 1) for individual buffers. For compatibility with Emacs
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
347 versions before 22 use the following in your .emacs file:
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
348
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
349 (if (functionp 'global-hi-lock-mode)
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
350 (global-hi-lock-mode 1)
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
351 (hi-lock-mode 1))
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
352 ")))
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
353 (if hi-lock-mode
67112
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
354 ;; Turned on.
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
355 (progn
67115
152403ad207b * hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents: 67114
diff changeset
356 (unless font-lock-mode (font-lock-mode 1))
67112
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
357 (define-key-after menu-bar-edit-menu [hi-lock]
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
358 (cons "Regexp Highlighting" hi-lock-menu))
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
359 (hi-lock-find-patterns)
67115
152403ad207b * hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents: 67114
diff changeset
360 (add-hook 'font-lock-mode-hook 'hi-lock-font-lock-hook nil t))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
361 ;; Turned off.
67115
152403ad207b * hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents: 67114
diff changeset
362 (when (or hi-lock-interactive-patterns
152403ad207b * hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents: 67114
diff changeset
363 hi-lock-file-patterns)
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
364 (when hi-lock-interactive-patterns
67115
152403ad207b * hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents: 67114
diff changeset
365 (font-lock-remove-keywords nil hi-lock-interactive-patterns)
152403ad207b * hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents: 67114
diff changeset
366 (setq hi-lock-interactive-patterns nil))
152403ad207b * hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents: 67114
diff changeset
367 (when hi-lock-file-patterns
152403ad207b * hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents: 67114
diff changeset
368 (font-lock-remove-keywords nil hi-lock-file-patterns)
152403ad207b * hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents: 67114
diff changeset
369 (setq hi-lock-file-patterns nil))
67765
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
370 (remove-overlays nil nil 'hi-lock-overlay t)
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
371 (when font-lock-fontified (font-lock-fontify-buffer)))
67112
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
372 (define-key-after menu-bar-edit-menu [hi-lock] nil)
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
373 (remove-hook 'font-lock-mode-hook 'hi-lock-font-lock-hook t)))
66833
efab878cd2e1 * hi-lock.el (hi-lock-mode): Set the default value of
Chong Yidong <cyd@stupidchicken.com>
parents: 65582
diff changeset
374
67112
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
375 ;;;###autoload
75642
a27300a96e36 (global-hi-lock-mode): define-global-minor-mode changed to
Chong Yidong <cyd@stupidchicken.com>
parents: 75347
diff changeset
376 (define-globalized-minor-mode global-hi-lock-mode
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
377 hi-lock-mode turn-on-hi-lock-if-enabled
67114
440072194b4b Fix typo.
Chong Yidong <cyd@stupidchicken.com>
parents: 67113
diff changeset
378 :group 'hi-lock)
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
379
67112
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
380 (defun turn-on-hi-lock-if-enabled ()
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
381 (setq hi-lock-archaic-interface-message-used t)
67112
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
382 (unless (memq major-mode hi-lock-exclude-modes)
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
383 (hi-lock-mode 1)))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
384
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
385 ;;;###autoload
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
386 (defalias 'highlight-lines-matching-regexp 'hi-lock-line-face-buffer)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
387 ;;;###autoload
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
388 (defun hi-lock-line-face-buffer (regexp &optional face)
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
389 "Set face of all lines containing a match of REGEXP to FACE.
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
390
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
391 Interactively, prompt for REGEXP then FACE. Buffer-local history
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
392 list maintained for regexps, global history maintained for faces.
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
393 \\<minibuffer-local-map>Use \\[next-history-element] and \\[previous-history-element] to retrieve next or previous history item.
68559
695ee8cc49c1 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-face-buffer,
Juanma Barranquero <lekktu@gmail.com>
parents: 67768
diff changeset
394 \(See info node `Minibuffer History'.)"
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
395 (interactive
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
396 (list
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
397 (hi-lock-regexp-okay
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
398 (read-from-minibuffer "Regexp to highlight line: "
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
399 (cons (or (car hi-lock-regexp-history) "") 1 )
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
400 nil nil 'hi-lock-regexp-history))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
401 (hi-lock-read-face-name)))
67208
af4b92018fde * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents: 67115
diff changeset
402 (or (facep face) (setq face 'hi-yellow))
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
403 (unless hi-lock-mode (hi-lock-mode 1))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
404 (hi-lock-set-pattern
36708
0e09b49d21b8 (hi-lock-line-face-buffer): Wrap the regexp in a group
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 36357
diff changeset
405 ;; The \\(?:...\\) grouping construct ensures that a leading ^, +, * or ?
0e09b49d21b8 (hi-lock-line-face-buffer): Wrap the regexp in a group
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 36357
diff changeset
406 ;; or a trailing $ in REGEXP will be interpreted correctly.
67112
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
407 (concat "^.*\\(?:" regexp "\\).*$") face))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
408
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
409
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
410 ;;;###autoload
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
411 (defalias 'highlight-regexp 'hi-lock-face-buffer)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
412 ;;;###autoload
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
413 (defun hi-lock-face-buffer (regexp &optional face)
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
414 "Set face of each match of REGEXP to FACE.
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
415
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
416 Interactively, prompt for REGEXP then FACE. Buffer-local history
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
417 list maintained for regexps, global history maintained for faces.
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
418 \\<minibuffer-local-map>Use \\[next-history-element] and \\[previous-history-element] to retrieve next or previous history item.
68559
695ee8cc49c1 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-face-buffer,
Juanma Barranquero <lekktu@gmail.com>
parents: 67768
diff changeset
419 \(See info node `Minibuffer History'.)"
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
420 (interactive
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
421 (list
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
422 (hi-lock-regexp-okay
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
423 (read-from-minibuffer "Regexp to highlight: "
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
424 (cons (or (car hi-lock-regexp-history) "") 1 )
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
425 nil nil 'hi-lock-regexp-history))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
426 (hi-lock-read-face-name)))
67208
af4b92018fde * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents: 67115
diff changeset
427 (or (facep face) (setq face 'hi-yellow))
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
428 (unless hi-lock-mode (hi-lock-mode 1))
67112
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
429 (hi-lock-set-pattern regexp face))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
430
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
431 ;;;###autoload
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
432 (defalias 'highlight-phrase 'hi-lock-face-phrase-buffer)
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
433 ;;;###autoload
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
434 (defun hi-lock-face-phrase-buffer (regexp &optional face)
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
435 "Set face of each match of phrase REGEXP to FACE.
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
436
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
437 Whitespace in REGEXP converted to arbitrary whitespace and initial
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
438 lower-case letters made case insensitive."
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
439 (interactive
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
440 (list
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
441 (hi-lock-regexp-okay
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
442 (hi-lock-process-phrase
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
443 (read-from-minibuffer "Phrase to highlight: "
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
444 (cons (or (car hi-lock-regexp-history) "") 1 )
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
445 nil nil 'hi-lock-regexp-history)))
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
446 (hi-lock-read-face-name)))
67208
af4b92018fde * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents: 67115
diff changeset
447 (or (facep face) (setq face 'hi-yellow))
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
448 (unless hi-lock-mode (hi-lock-mode 1))
67112
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
449 (hi-lock-set-pattern regexp face))
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
450
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
451 ;;;###autoload
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
452 (defalias 'unhighlight-regexp 'hi-lock-unface-buffer)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
453 ;;;###autoload
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
454 (defun hi-lock-unface-buffer (regexp)
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
455 "Remove highlighting of each match to REGEXP set by hi-lock.
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
456
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
457 Interactively, prompt for REGEXP. Buffer-local history of inserted
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
458 regexp's maintained. Will accept only regexps inserted by hi-lock
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
459 interactive functions. \(See `hi-lock-interactive-patterns'.\)
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
460 \\<minibuffer-local-must-match-map>Use \\[minibuffer-complete] to complete a partially typed regexp.
30590
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
461 \(See info node `Minibuffer History'.\)"
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
462 (interactive
82857
2a4d4f565ad8 (hi-lock-unface-buffer): Show a x-menu only if the mouse was used.
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents: 78236
diff changeset
463 (if (and (display-popup-menus-p) (not last-nonmenu-event))
30590
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
464 (catch 'snafu
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
465 (or
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
466 (x-popup-menu
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
467 t
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
468 (cons
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
469 `keymap
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
470 (cons "Select Pattern to Unhighlight"
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
471 (mapcar (lambda (pattern)
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
472 (list (car pattern)
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
473 (format
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
474 "%s (%s)" (car pattern)
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
475 (symbol-name
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
476 (car
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
477 (cdr (car (cdr (car (cdr pattern))))))))
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
478 (cons nil nil)
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
479 (car pattern)))
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
480 hi-lock-interactive-patterns))))
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
481 ;; If the user clicks outside the menu, meaning that they
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
482 ;; change their mind, x-popup-menu returns nil, and
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
483 ;; interactive signals a wrong number of arguments error.
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
484 ;; To prevent that, we return an empty string, which will
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
485 ;; effectively disable the rest of the function.
63a24eff41fe (hi-lock-unface-buffer): If a menu of regexps is
Eli Zaretskii <eliz@gnu.org>
parents: 30584
diff changeset
486 (throw 'snafu '(""))))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
487 (let ((history-list (mapcar (lambda (p) (car p))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
488 hi-lock-interactive-patterns)))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
489 (unless hi-lock-interactive-patterns
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
490 (error "No highlighting to remove"))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
491 (list
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
492 (completing-read "Regexp to unhighlight: "
36357
06ff4f3266f8 (hi-lock-unface-buffer): Use nil rather than t for
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 36062
diff changeset
493 hi-lock-interactive-patterns nil t
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
494 (car (car hi-lock-interactive-patterns))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
495 (cons 'history-list 1))))))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
496 (let ((keyword (assoc regexp hi-lock-interactive-patterns)))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
497 (when keyword
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
498 (font-lock-remove-keywords nil (list keyword))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
499 (setq hi-lock-interactive-patterns
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
500 (delq keyword hi-lock-interactive-patterns))
67765
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
501 (remove-overlays
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
502 nil nil 'hi-lock-overlay-regexp (hi-lock-string-serialize regexp))
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
503 (when font-lock-fontified (font-lock-fontify-buffer)))))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
504
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
505 ;;;###autoload
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
506 (defun hi-lock-write-interactive-patterns ()
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
507 "Write interactively added patterns, if any, into buffer at point.
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
508
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
509 Interactively added patterns are those normally specified using
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
510 `highlight-regexp' and `highlight-lines-matching-regexp'; they can
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
511 be found in variable `hi-lock-interactive-patterns'."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
512 (interactive)
67208
af4b92018fde * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents: 67115
diff changeset
513 (if (null hi-lock-interactive-patterns)
af4b92018fde * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents: 67115
diff changeset
514 (error "There are no interactive patterns"))
af4b92018fde * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents: 67115
diff changeset
515 (let ((beg (point)))
84872
b39ee0f351f1 (hi-lock-write-interactive-patterns): Use `mapc' rather than `mapcar'.
Juanma Barranquero <lekktu@gmail.com>
parents: 82857
diff changeset
516 (mapc
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
517 (lambda (pattern)
67768
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
518 (insert (format "%s: (%s)\n"
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
519 hi-lock-file-patterns-prefix
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
520 (prin1-to-string pattern))))
67208
af4b92018fde * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents: 67115
diff changeset
521 hi-lock-interactive-patterns)
af4b92018fde * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents: 67115
diff changeset
522 (comment-region beg (point)))
af4b92018fde * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents: 67115
diff changeset
523 (when (> (point) hi-lock-file-patterns-range)
af4b92018fde * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
Chong Yidong <cyd@stupidchicken.com>
parents: 67115
diff changeset
524 (warn "Inserted keywords not close enough to top of file")))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
525
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
526 ;; Implementation Functions
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
527
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
528 (defun hi-lock-process-phrase (phrase)
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
529 "Convert regexp PHRASE to a regexp that matches phrases.
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
530
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
531 Blanks in PHRASE replaced by regexp that matches arbitrary whitespace
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
532 and initial lower-case letters made case insensitive."
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
533 (let ((mod-phrase nil))
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
534 (setq mod-phrase
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
535 (replace-regexp-in-string
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
536 "\\<[a-z]" (lambda (m) (format "[%s%s]" (upcase m) m)) phrase))
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
537 (setq mod-phrase
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
538 (replace-regexp-in-string
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
539 "\\s-+" "[ \t\n]+" mod-phrase nil t))))
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
540
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
541 (defun hi-lock-regexp-okay (regexp)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
542 "Return REGEXP if it appears suitable for a font-lock pattern.
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
543
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
544 Otherwise signal an error. A pattern that matches the null string is
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
545 not suitable."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
546 (if (string-match regexp "")
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
547 (error "Regexp cannot match an empty string")
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
548 regexp))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
549
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
550 (defun hi-lock-read-face-name ()
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
551 "Read face name from minibuffer with completion and history."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
552 (intern (completing-read
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
553 "Highlight using face: "
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
554 obarray 'facep t
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
555 (cons (car hi-lock-face-history)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
556 (let ((prefix
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
557 (try-completion
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
558 (substring (car hi-lock-face-history) 0 1)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
559 (mapcar (lambda (f) (cons f f))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
560 hi-lock-face-history))))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
561 (if (and (stringp prefix)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
562 (not (equal prefix (car hi-lock-face-history))))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
563 (length prefix) 0)))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
564 '(hi-lock-face-history . 0))))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
565
67112
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
566 (defun hi-lock-set-pattern (regexp face)
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
567 "Highlight REGEXP with face FACE."
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
568 (let ((pattern (list regexp (list 0 (list 'quote face) t))))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
569 (unless (member pattern hi-lock-interactive-patterns)
67768
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
570 (font-lock-add-keywords nil (list pattern) t)
67112
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
571 (push pattern hi-lock-interactive-patterns)
67765
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
572 (if font-lock-fontified
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
573 (font-lock-fontify-buffer)
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
574 (let* ((serial (hi-lock-string-serialize regexp))
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
575 (range-min (- (point) (/ hi-lock-highlight-range 2)))
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
576 (range-max (+ (point) (/ hi-lock-highlight-range 2)))
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
577 (search-start
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
578 (max (point-min)
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
579 (- range-min (max 0 (- range-max (point-max))))))
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
580 (search-end
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
581 (min (point-max)
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
582 (+ range-max (max 0 (- (point-min) range-min))))))
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
583 (save-excursion
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
584 (goto-char search-start)
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
585 (while (re-search-forward regexp search-end t)
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
586 (let ((overlay (make-overlay (match-beginning 0) (match-end 0))))
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
587 (overlay-put overlay 'hi-lock-overlay t)
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
588 (overlay-put overlay 'hi-lock-overlay-regexp serial)
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
589 (overlay-put overlay 'face face))
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
590 (goto-char (match-end 0)))))))))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
591
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
592 (defun hi-lock-set-file-patterns (patterns)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
593 "Replace file patterns list with PATTERNS and refontify."
35926
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
594 (when (or hi-lock-file-patterns patterns)
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
595 (font-lock-remove-keywords nil hi-lock-file-patterns)
d2997845573f (hi-lock-mode): Toggling hi-lock-mode now affects all
Gerd Moellmann <gerd@gnu.org>
parents: 35779
diff changeset
596 (setq hi-lock-file-patterns patterns)
67768
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
597 (font-lock-add-keywords nil hi-lock-file-patterns t)
67115
152403ad207b * hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents: 67114
diff changeset
598 (font-lock-fontify-buffer)))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
599
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
600 (defun hi-lock-find-patterns ()
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
601 "Find patterns in current buffer for hi-lock."
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
602 (interactive)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
603 (unless (memq major-mode hi-lock-exclude-modes)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
604 (let ((all-patterns nil)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
605 (target-regexp (concat "\\<" hi-lock-file-patterns-prefix ":")))
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
606 (save-excursion
43052
4037178317df *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39065
diff changeset
607 (save-restriction
4037178317df *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39065
diff changeset
608 (widen)
4037178317df *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39065
diff changeset
609 (goto-char (point-min))
4037178317df *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39065
diff changeset
610 (re-search-forward target-regexp
4037178317df *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39065
diff changeset
611 (+ (point) hi-lock-file-patterns-range) t)
4037178317df *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39065
diff changeset
612 (beginning-of-line)
4037178317df *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39065
diff changeset
613 (while (and (re-search-forward target-regexp (+ (point) 100) t)
4037178317df *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39065
diff changeset
614 (not (looking-at "\\s-*end")))
64117
8ad318b132eb (hi-lock-find-patterns): Protect also against invalid values for the pattern
Juanma Barranquero <lekktu@gmail.com>
parents: 64091
diff changeset
615 (condition-case nil
8ad318b132eb (hi-lock-find-patterns): Protect also against invalid values for the pattern
Juanma Barranquero <lekktu@gmail.com>
parents: 64091
diff changeset
616 (setq all-patterns (append (read (current-buffer)) all-patterns))
8ad318b132eb (hi-lock-find-patterns): Protect also against invalid values for the pattern
Juanma Barranquero <lekktu@gmail.com>
parents: 64091
diff changeset
617 (error (message "Invalid pattern list expression at %d"
67112
146389d32df6 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
Chong Yidong <cyd@stupidchicken.com>
parents: 66960
diff changeset
618 (line-number-at-pos)))))))
77343
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
619 (when (and all-patterns
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
620 hi-lock-mode
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
621 (cond
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
622 ((eq this-command 'hi-lock-find-patterns) t)
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
623 ((functionp hi-lock-file-patterns-policy)
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
624 (funcall hi-lock-file-patterns-policy all-patterns))
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
625 ((eq hi-lock-file-patterns-policy 'ask)
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
626 (y-or-n-p "Add patterns from this buffer to hi-lock? "))
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
627 (t nil)))
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
628 (hi-lock-set-file-patterns all-patterns)
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
629 (if (interactive-p)
f8ec7356b88a (hi-lock-file-patterns-policy): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 75642
diff changeset
630 (message "Hi-lock added %d patterns." (length all-patterns)))))))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
631
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
632 (defun hi-lock-font-lock-hook ()
68559
695ee8cc49c1 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-face-buffer,
Juanma Barranquero <lekktu@gmail.com>
parents: 67768
diff changeset
633 "Add hi-lock patterns to font-lock's."
67115
152403ad207b * hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
Chong Yidong <cyd@stupidchicken.com>
parents: 67114
diff changeset
634 (if font-lock-mode
67768
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
635 (progn
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
636 (font-lock-add-keywords nil hi-lock-file-patterns t)
edd5b99fd103 (hi-lock-archaic-interface-message-used)
Juri Linkov <juri@jurta.org>
parents: 67765
diff changeset
637 (font-lock-add-keywords nil hi-lock-interactive-patterns t))
67474
a75f6e2ee182 (hi-lock-mode) Renamed from hi-lock-buffer-mode; react if global-hi-lock-mode
Eli Zaretskii <eliz@gnu.org>
parents: 67208
diff changeset
638 (hi-lock-mode -1)))
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
639
67765
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
640 (defvar hi-lock-string-serialize-hash
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
641 (make-hash-table :test 'equal)
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
642 "Hash table used to assign unique numbers to strings.")
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
643
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
644 (defvar hi-lock-string-serialize-serial 1
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
645 "Number assigned to last new string in call to `hi-lock-string-serialize'.
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
646 A string is considered new if it had not previously been used in a call to
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
647 `hi-lock-string-serialize'.")
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
648
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
649 (defun hi-lock-string-serialize (string)
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
650 "Return unique serial number for STRING."
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
651 (interactive)
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
652 (let ((val (gethash string hi-lock-string-serialize-hash)))
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
653 (if val val
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
654 (puthash string
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
655 (setq hi-lock-string-serialize-serial
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
656 (1+ hi-lock-string-serialize-serial))
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
657 hi-lock-string-serialize-hash)
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
658 hi-lock-string-serialize-serial)))
fd7c898ab005 (hi-lock-highlight-range): New variable.
Juri Linkov <juri@jurta.org>
parents: 67474
diff changeset
659
93434
d3e8f7c16304 (hi-lock-mode): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 87649
diff changeset
660 (defun hi-lock-unload-function ()
d3e8f7c16304 (hi-lock-mode): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 87649
diff changeset
661 "Unload the Hi-Lock library."
d3e8f7c16304 (hi-lock-mode): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 87649
diff changeset
662 (global-hi-lock-mode -1)
d3e8f7c16304 (hi-lock-mode): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 87649
diff changeset
663 ;; continue standard unloading
d3e8f7c16304 (hi-lock-mode): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 87649
diff changeset
664 nil)
d3e8f7c16304 (hi-lock-mode): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 87649
diff changeset
665
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
666 (provide 'hi-lock)
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
667
60902
7160fe3a7ef1 find-file-hooks -> find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59873
diff changeset
668 ;; arch-tag: d2e8fd07-4cc9-4c6f-a200-1e729bc54066
30565
338238ca63ce *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
669 ;;; hi-lock.el ends here