Function: idlwave-help-find-first-header

idlwave-help-find-first-header is an interactive and byte-compiled function defined in idlw-help.el.gz.

Signature

(idlwave-help-find-first-header &optional ARG)

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlw-help.el.gz
(defun idlwave-help-find-first-header (&optional _arg)
  (interactive)
  (let (pos)
    (save-excursion
      (goto-char (point-min))
      (if (re-search-forward idlwave-doclib-start nil t)
	  (setq pos (match-beginning 0))))
    (if pos
	(progn
	  (goto-char pos)
	  (recenter 0))
      (error "No DocLib Header in current file"))))