Function: ebrowse-tree-at-point

ebrowse-tree-at-point is a byte-compiled function defined in ebrowse.el.gz.

Signature

(ebrowse-tree-at-point)

Documentation

Return the class structure for the class point is on.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
;;; Viewing or finding a class declaration

(defun ebrowse-tree-at-point ()
  "Return the class structure for the class point is on."
  (or (get-text-property (point) 'ebrowse-tree)
      (error "Not on a class")))