Function: ebrowse-view-class-declaration

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

Signature

(ebrowse-view-class-declaration PREFIX)

Documentation

View class declaration and position cursor on it.

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

Key Bindings

Source Code

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