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, inhibit-point-motion-hooks
and case-fold-search are both 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, `inhibit-point-motion-hooks'
and `case-fold-search' are both t."
(declare (debug t))
`(when hs-minor-mode
(let ((inhibit-point-motion-hooks t)
(case-fold-search t))
,@body)))