Function: mh-mark-active-p
mh-mark-active-p is an autoloaded macro defined in mh-acros.el.gz.
This macro is obsolete since 29.1.
Signature
(mh-mark-active-p CHECK-TRANSIENT-MARK-MODE-FLAG)
Documentation
If CHECK-TRANSIENT-MARK-MODE-FLAG is non-nil then check if
variable transient-mark-mode(var)/transient-mark-mode(fun) is active.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-acros.el.gz
;;;###mh-autoload
(defmacro mh-mark-active-p (check-transient-mark-mode-flag)
"If CHECK-TRANSIENT-MARK-MODE-FLAG is non-nil then check if
variable `transient-mark-mode' is active."
(declare (obsolete nil "29.1"))
(cond ((not check-transient-mark-mode-flag)
'mark-active)
(t
'(and transient-mark-mode mark-active))))