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