Function: ebrowse-electric-find-position
ebrowse-electric-find-position is a byte-compiled function defined in
ebrowse.el.gz.
Signature
(ebrowse-electric-find-position POINT &optional VIEW)
Documentation
View/find what is described by the line at POINT.
If VIEW is non-nil, view else find source files.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
(defun ebrowse-electric-find-position (point &optional view)
"View/find what is described by the line at POINT.
If VIEW is non-nil, view else find source files."
(let ((index (- (count-lines (point-min) point) 2)))
(ebrowse-view/find-position (nth index
ebrowse-position-stack) view)))