Merge pull request #95 from tarsius/custom

* fix parent groups of custom groups and options
This commit is contained in:
Dirk-Jan C. Binnema
2012-11-14 14:29:38 -08:00
2 changed files with 5 additions and 3 deletions

View File

@ -31,7 +31,7 @@
(defgroup mu4e nil
"mu4e - mu for emacs"
:group 'local)
:group 'mail)
(defcustom mu4e-mu-home nil
"Location of the mu homedir, or nil for the default."
@ -145,7 +145,8 @@ Also see `mu4e-headers-visible-lines'
and `mu4e-headers-visible-columns'."
:type '(choice (const :tag "Split horizontally" horizontal)
(const :tag "Split vertically" vertical)
(const :tag "Don't split" nil)))
(const :tag "Don't split" nil))
:group 'mu4e-headers)
(defcustom mu4e-show-images nil
"Whether to automatically display attached images in the message

View File

@ -37,7 +37,8 @@
(defgroup org-mu4e nil
"Settings for the org-mode related functionality in mu4e."
:group 'org-mu4e)
:group 'mu4e
:group 'org)
(defcustom org-mu4e-link-desc-func
(lambda (msg) (or (plist-get msg :subject) "No subject"))