Function: senator-word-search-forward

senator-word-search-forward is an interactive and byte-compiled function defined in senator.el.gz.

Signature

(senator-word-search-forward WORD &optional BOUND NOERROR COUNT)

Documentation

Search in tag names forward from point for WORD.

Set point to the end of the occurrence found, and return point. See also the function word-search-forward for details on the BOUND, NOERROR and COUNT arguments.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/senator.el.gz
(defun senator-word-search-forward (word &optional bound noerror count)
  "Search in tag names forward from point for WORD.
Set point to the end of the occurrence found, and return point.
See also the function `word-search-forward' for details on the BOUND,
NOERROR and COUNT arguments."
  (interactive "sSemantic word search: ")
  (senator-search 'word-search-forward word bound noerror count))