Function: mh-children-p
mh-children-p is a macro defined in mh-utils.el.gz.
Signature
(mh-children-p FOLDER)
Documentation
Return t if FOLDER from sub-folders cache has children.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-utils.el.gz
(defmacro mh-children-p (folder)
"Return t if FOLDER from sub-folders cache has children."
;; The car of folder is the name, and the cdr is either t or some
;; sort of count that I do not understand. It's too small to be the
;; number of messages in the sub-folders and too large to be the
;; number of sub-folders. XXX
`(if (cdr ,folder)
t
nil))