Function: ebrowse-electric-get-buffer
ebrowse-electric-get-buffer is a byte-compiled function defined in
ebrowse.el.gz.
Signature
(ebrowse-electric-get-buffer POINT)
Documentation
Get a buffer corresponding to the line POINT is in.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
(defun ebrowse-electric-get-buffer (point)
"Get a buffer corresponding to the line POINT is in."
(let ((index (- (count-lines (point-min) point) 2)))
(nth index (ebrowse-known-class-trees-buffer-list))))