Function: allout-isearch-end-handler

allout-isearch-end-handler is a byte-compiled function defined in allout.el.gz.

Signature

(allout-isearch-end-handler &optional OVERLAY)

Documentation

Reconcile allout outline exposure on arriving in hidden text after isearch.

Optional OVERLAY parameter is for when this function is used by isearch-open-invisible overlay property. It is otherwise unused, so this function can also be used as an isearch-mode-end-hook.

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_  > allout-isearch-end-handler (&optional overlay)
(defun allout-isearch-end-handler (&optional _overlay)
  "Reconcile allout outline exposure on arriving in hidden text after isearch.

Optional OVERLAY parameter is for when this function is used by
`isearch-open-invisible' overlay property.  It is otherwise unused, so this
function can also be used as an `isearch-mode-end-hook'."

  (if (and (allout-mode-p) (allout-hidden-p))
      (allout-show-to-offshoot)))