Function: outline-search-level

outline-search-level is an autoloaded and byte-compiled function defined in outline.el.gz.

Signature

(outline-search-level &optional BOUND MOVE BACKWARD LOOKING-AT)

Documentation

Search for the next text property outline-level(var)/outline-level(fun).

The arguments are the same as in outline-search-text-property, except the hard-coded property name outline-level(var)/outline-level(fun). This function is intended to be used in outline-search-function.

Source Code

;; Defined in /usr/src/emacs/lisp/outline.el.gz
;;; Search text-property for outline headings

;;;###autoload
(defun outline-search-level (&optional bound move backward looking-at)
  "Search for the next text property `outline-level'.
The arguments are the same as in `outline-search-text-property',
except the hard-coded property name `outline-level'.
This function is intended to be used in `outline-search-function'."
  (outline-search-text-property 'outline-level nil bound move backward looking-at))