diff options
| -rw-r--r-- | etc/NEWS | 7 | ||||
| -rw-r--r-- | lisp/ChangeLog | 29 |
2 files changed, 33 insertions, 3 deletions
| @@ -1798,8 +1798,8 @@ typical scenario is to keep track of how much time you spend working | |||
| 1798 | on certain projects. | 1798 | on certain projects. |
| 1799 | 1799 | ||
| 1800 | +++ | 1800 | +++ |
| 1801 | *** The new package hi-lock.el, text matching interactively entered | 1801 | *** The new package hi-lock.el provides commands to highlight matches |
| 1802 | regexp's can be highlighted. For example, | 1802 | of interactively entered regexps. For example, |
| 1803 | 1803 | ||
| 1804 | M-x highlight-regexp RET clearly RET RET | 1804 | M-x highlight-regexp RET clearly RET RET |
| 1805 | 1805 | ||
| @@ -1809,7 +1809,8 @@ typed. `M-x unhighlight-regexp RET' will remove the highlighting. | |||
| 1809 | Any existing face can be used for highlighting and a set of | 1809 | Any existing face can be used for highlighting and a set of |
| 1810 | appropriate faces is provided. The regexps can be written into the | 1810 | appropriate faces is provided. The regexps can be written into the |
| 1811 | current buffer in a form that will be recognized the next time the | 1811 | current buffer in a form that will be recognized the next time the |
| 1812 | corresponding file is read. | 1812 | corresponding file is read. There are commands to highlight matches |
| 1813 | to phrases and to highlight entire lines containing a match. | ||
| 1813 | 1814 | ||
| 1814 | +++ | 1815 | +++ |
| 1815 | *** The new package zone.el plays games with Emacs' display when | 1816 | *** The new package zone.el plays games with Emacs' display when |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fd4975d7a1e..83ca8021ca9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,32 @@ | |||
| 1 | 2001-02-06 David M. Koppelman <koppel@ee.lsu.edu> | ||
| 2 | |||
| 3 | * hi-lock.el (hi-lock-mode): Toggling hi-lock-mode now affects all | ||
| 4 | buffers. When hi-lock turned on rather than only checking current | ||
| 5 | buffer for regexps, all buffers are checked. Moved activation of | ||
| 6 | font-lock to hi-lock-refontify. When font-lock turned off rather | ||
| 7 | than removing added highlighting just in current buffer, remove it | ||
| 8 | in all buffers. Changed edit menu text from "Automatic | ||
| 9 | Highlighting" to "Regexp Highlighting" Documentation for | ||
| 10 | highlighting phrases, minor documentation changes. | ||
| 11 | (hi-lock-set-file-patterns): Execute only if there are new or | ||
| 12 | existing file patterns. | ||
| 13 | (hi-lock-refontify): Assume font-lock-fontify-buffer will first | ||
| 14 | unfontify and, if a support mode is active, will not refontify the | ||
| 15 | whole buffer. If necessary, turn on font lock. (Removed | ||
| 16 | font-lock-unfontify and font-lock support-mode-specific calls, | ||
| 17 | such as lazy-lock-fontify-window.) | ||
| 18 | (hi-lock-find-patterns): Do not turn on hi-lock-mode even if | ||
| 19 | patterns are found. Not useful now since find-file-hook is removed | ||
| 20 | if hi-lock is off, but may be needed for per-buffer hi-lock | ||
| 21 | activation. | ||
| 22 | (hi-lock-face-phrase-buffer): New function. Also added related | ||
| 23 | menu item and keybinding. | ||
| 24 | (highlight-phrase): New alias, to hi-lock-face-phrase-buffer. | ||
| 25 | (hi-lock-process-phrase): New function. | ||
| 26 | (hi-lock-line-face-buffer): Doc fixes. | ||
| 27 | (hi-lock-face-buffer): Doc fixes. | ||
| 28 | (hi-lock-unface-buffer): Doc fixes. | ||
| 29 | |||
| 1 | 2001-02-06 Gerd Moellmann <gerd@gnu.org> | 30 | 2001-02-06 Gerd Moellmann <gerd@gnu.org> |
| 2 | 31 | ||
| 3 | * dabbrev.el (dabbrev-ignored-buffer-regexps): Renamed from | 32 | * dabbrev.el (dabbrev-ignored-buffer-regexps): Renamed from |