Function: hs-isearch-show

hs-isearch-show is a byte-compiled function defined in hideshow.el.gz.

Signature

(hs-isearch-show OV)

Documentation

Delete overlay OV, and set hs-headline to nil.

This function is meant to be used as the isearch-open-invisible property of an overlay.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/hideshow.el.gz
(defun hs-isearch-show (ov)
  "Delete overlay OV, and set `hs-headline' to nil.

This function is meant to be used as the `isearch-open-invisible'
property of an overlay."
  (setq hs-headline nil)
  (delete-overlay ov))