diff options
author | Juri Linkov <juri@jurta.org> | 2005-11-17 07:21:54 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2005-11-17 07:21:54 +0000 |
commit | f43eaaefc8b1b475e67bbaece7ee9044fd43e7f1 (patch) | |
tree | 8594d8d3f7767133073da08ac0725c3a97a957f8 /lisp/hi-lock.el | |
parent | d69ab4ba1fd07e090e854f34623743362bf4ed18 (diff) | |
download | emacs-f43eaaefc8b1b475e67bbaece7ee9044fd43e7f1.tar.gz |
(hi-lock): Rename this defgroup from
`hi-lock-interactive-text-highlighting'. Change parent group from
`faces' to `font-lock'. Add link to the manual.
(hi-lock-mode, hi-lock-file-patterns-range)
(hi-lock-exclude-modes, hi-lock-faces): Rename :group from
`hi-lock-interactive-text-highlighting' to `hi-lock'.
(hi-lock-faces): Add :group `faces'.
Diffstat (limited to 'lisp/hi-lock.el')
-rw-r--r-- | lisp/hi-lock.el | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lisp/hi-lock.el b/lisp/hi-lock.el index 63f7611bd52..8d565ab61a8 100644 --- a/lisp/hi-lock.el +++ b/lisp/hi-lock.el @@ -84,9 +84,10 @@ (eval-and-compile (require 'font-lock)) -(defgroup hi-lock-interactive-text-highlighting nil +(defgroup hi-lock nil "Interactively add and remove font-lock patterns for highlighting text." - :group 'faces) + :link '(custom-manual "(emacs)Highlight Interactively") + :group 'font-lock) ;;;###autoload (defcustom hi-lock-mode nil @@ -95,7 +96,7 @@ (hi-lock-mode (or value 0))) :initialize 'custom-initialize-default :type 'boolean - :group 'hi-lock-interactive-text-highlighting + :group 'hi-lock :require 'hi-lock) (defcustom hi-lock-file-patterns-range 10000 @@ -104,7 +105,7 @@ When a file is visited and hi-lock mode is on patterns starting up to this limit are added to font-lock's patterns. See documentation of functions `hi-lock-mode' and `hi-lock-find-patterns'." :type 'integer - :group 'hi-lock-interactive-text-highlighting) + :group 'hi-lock) (defcustom hi-lock-exclude-modes '(rmail-mode mime/viewer-mode gnus-article-mode) @@ -112,12 +113,13 @@ of functions `hi-lock-mode' and `hi-lock-find-patterns'." For security reasons since font lock patterns can specify function calls." :type '(repeat symbol) - :group 'hi-lock-interactive-text-highlighting) + :group 'hi-lock) (defgroup hi-lock-faces nil "Faces for hi-lock." - :group 'hi-lock-interactive-text-highlighting) + :group 'hi-lock + :group 'faces) (defface hi-yellow '((((min-colors 88) (background dark)) |