Function: ebrowse-find-class-declaration

ebrowse-find-class-declaration is an interactive and byte-compiled function defined in ebrowse.el.gz.

Signature

(ebrowse-find-class-declaration PREFIX)

Documentation

Find a class declaration and position cursor on it.

PREFIX 4 means find it in another window. PREFIX 5 means find it in another frame.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
(defun ebrowse-find-class-declaration (prefix)
  "Find a class declaration and position cursor on it.
PREFIX 4 means find it in another window.
PREFIX 5 means find it in another frame."
  (interactive "p")
  (ebrowse-view/find-class-declaration
   :view nil
   :where (cond ((= prefix 4) 'other-window)
		((= prefix 5) 'other-frame)
		(t            'this-window))))