Function: ebrowse-tags-search

ebrowse-tags-search is an autoloaded, interactive and byte-compiled function defined in ebrowse.el.gz.

Signature

(ebrowse-tags-search REGEXP)

Documentation

Search for REGEXP in all files in a tree.

If marked classes exist, process marked classes, only. If regular expression is nil, repeat last search.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
;;;###autoload
(defun ebrowse-tags-search (regexp)
  "Search for REGEXP in all files in a tree.
If marked classes exist, process marked classes, only.
If regular expression is nil, repeat last search."
  (interactive "sTree search (regexp): ")
  (if (and (string= regexp "")
	   (eq (car ebrowse-tags-loop-call) #'re-search-forward))
      (ebrowse-tags-loop-continue)
    (setq ebrowse-tags-loop-call `(re-search-forward ,regexp nil t))
    (ebrowse-tags-loop-continue 'first-time)))