diff options
| author | Richard M. Stallman | 2002-01-20 09:27:07 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-01-20 09:27:07 +0000 |
| commit | 7f68bf9153daca278b78982c7a04ed98a89c3d97 (patch) | |
| tree | a755a578699406ed33544021ffd69eacca0f4880 | |
| parent | 4dea3d5237a2ca23b28124152b230c1528b79d78 (diff) | |
| download | emacs-7f68bf9153daca278b78982c7a04ed98a89c3d97.tar.gz emacs-7f68bf9153daca278b78982c7a04ed98a89c3d97.zip | |
Comment changes.
| -rw-r--r-- | lisp/hl-line.el | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lisp/hl-line.el b/lisp/hl-line.el index e37bdf412c2..2e269925887 100644 --- a/lisp/hl-line.el +++ b/lisp/hl-line.el | |||
| @@ -25,15 +25,17 @@ | |||
| 25 | 25 | ||
| 26 | ;;; Commentary: | 26 | ;;; Commentary: |
| 27 | 27 | ||
| 28 | ;; Provides a global minor mode (toggled by M-x hl-line-mode) to | 28 | ;; Provides a minor mode (toggled by M-x hl-line-ode) and a global minor |
| 29 | ;; highlight, on a suitable terminal, the line in the current window | 29 | ;; mode (toggled by M-x global-hl-line-mode) to highlight, on a |
| 30 | ;; on which point is (except in a minibuffer window). Done to satisfy | 30 | ;; suitable terminal, the line in the current window on which point is |
| 31 | ;; a request for a feature of Lesser Editors. | 31 | ;; (except in a minibuffer window). Done to satisfy a request for a |
| 32 | ;; feature of Lesser Editors. | ||
| 32 | 33 | ||
| 33 | ;; You probably don't really want this; if the cursor is difficult to | 34 | ;; You probably don't really want this; if the cursor is difficult to |
| 34 | ;; spot, try changing its colour, relying on `blink-cursor-mode' or | 35 | ;; spot, try changing its colour, relying on `blink-cursor-mode' or |
| 35 | ;; both. The hookery used might affect response noticeably on a slow | 36 | ;; both. The hookery used might affect response noticeably on a slow |
| 36 | ;; machine. | 37 | ;; machine. It may be useful in "non-text" buffers such as Gnus or |
| 38 | ;; PCL-CVS though. | ||
| 37 | 39 | ||
| 38 | ;; An overlay is used, active only on the selected window. Hooks are | 40 | ;; An overlay is used, active only on the selected window. Hooks are |
| 39 | ;; added to `pre-command-hook' and `post-command-hook' to activate and | 41 | ;; added to `pre-command-hook' and `post-command-hook' to activate and |
| @@ -45,7 +47,7 @@ | |||
| 45 | ;; across the window width. | 47 | ;; across the window width. |
| 46 | 48 | ||
| 47 | ;; You could make variable `hl-line-mode' buffer-local to avoid | 49 | ;; You could make variable `hl-line-mode' buffer-local to avoid |
| 48 | ;; highlighting specific buffers. | 50 | ;; highlighting specific buffers, when the global mode is used. |
| 49 | 51 | ||
| 50 | ;;; Code: | 52 | ;;; Code: |
| 51 | 53 | ||