Function: senator-search-forward
senator-search-forward is an interactive and byte-compiled function
defined in senator.el.gz.
Signature
(senator-search-forward STRING &optional BOUND NOERROR COUNT)
Documentation
Search in tag names forward from point for STRING.
Set point to the end of the occurrence found, and return point.
See also the function 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
;;; Search commands
(defun senator-search-forward (string &optional bound noerror count)
"Search in tag names forward from point for STRING.
Set point to the end of the occurrence found, and return point.
See also the function `search-forward' for details on the BOUND,
NOERROR and COUNT arguments."
(interactive "sSemantic search: ")
(senator-search 'search-forward string bound noerror count))