Declare defgroup more conventionally

- Add missing parent group
- No need to enumerate members
- "for Emacs" is redundant
This commit is contained in:
Steve Purcell 2016-08-25 23:24:13 +12:00
parent b571187d68
commit c4bf2ea7a0

View File

@ -39,6 +39,11 @@
;;; fold display mode and faces
(defgroup origami nil
"Flexible text folding"
:prefix "origami-"
:group 'convenience)
(defcustom origami-fold-replacement "..."
;; TODO: this should also be specifiable as a function: folded text -> string
"Show this string instead of the folded text."
@ -63,11 +68,6 @@
'((t :inherit 'font-lock-comment-face))
"Face used to display the fold replacement text.")
(defgroup origami '((origami-fold-header-face custom-face)
(origami-fold-fringe-face custom-face)
(origami-fold-replacement-face custom-face))
"Origami: A text folding minor mode for Emacs.")
;;; overlay manipulation
(defun origami-header-overlay-range (fold-overlay)