Function: bubbles--row
bubbles--row is a byte-compiled function defined in bubbles.el.gz.
Signature
(bubbles--row POS)
Documentation
Return row of point POS.
Source Code
;; Defined in /usr/src/emacs/lisp/play/bubbles.el.gz
(defsubst bubbles--row (pos)
"Return row of point POS."
(save-excursion
(goto-char pos)
(beginning-of-line)
(1- (count-lines (point-min) (point)))))