Function: hs-life-goes-on
hs-life-goes-on is a macro defined in hideshow.el.gz.
Signature
(hs-life-goes-on &rest BODY)
Documentation
Evaluate BODY forms if variable hs-minor-mode(var)/hs-minor-mode(fun) is non-nil.
In the dynamic context of this macro, case-fold-search is t.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/hideshow.el.gz
(defmacro hs-life-goes-on (&rest body)
"Evaluate BODY forms if variable `hs-minor-mode' is non-nil.
In the dynamic context of this macro, `case-fold-search' is t."
(declare (debug t))
`(when hs-minor-mode
(let ((case-fold-search t))
,@body)))