Function: ebrowse-member-info-from-point
ebrowse-member-info-from-point is a byte-compiled function defined in
ebrowse.el.gz.
Signature
(ebrowse-member-info-from-point)
Documentation
Ger information about the member at point.
The result has the form (TREE MEMBER NULL-P). TREE is the tree we're in, MEMBER is the member we're on. NULL-P is t if MEMBER is nil.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
;;; Killing members from tree
(defun ebrowse-member-info-from-point ()
"Ger information about the member at point.
The result has the form (TREE MEMBER NULL-P). TREE is the tree
we're in, MEMBER is the member we're on. NULL-P is t if MEMBER
is nil."
(let ((tree (or (get-text-property (point) 'ebrowse-tree)
(error "No information at point")))
(member (get-text-property (point) 'ebrowse-member)))
(list tree member (null member))))