Function: bookmark-bmenu-ensure-position
bookmark-bmenu-ensure-position is a byte-compiled function defined in
bookmark.el.gz.
Signature
(bookmark-bmenu-ensure-position)
Documentation
If point is not on a bookmark line, move it to one.
If after the last full line, move to the last full line. The return value is undefined.
Source Code
;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-bmenu-ensure-position ()
"If point is not on a bookmark line, move it to one.
If after the last full line, move to the last full line. The
return value is undefined."
(cond ((and (bolp) (eobp))
(beginning-of-line 0))))