Function: bubbles--col

bubbles--col is a byte-compiled function defined in bubbles.el.gz.

Signature

(bubbles--col POS)

Documentation

Return column of point POS.

Source Code

;; Defined in /usr/src/emacs/lisp/play/bubbles.el.gz
(defsubst bubbles--col (pos)
  "Return column of point POS."
  (save-excursion
    (goto-char pos)
    (1- (current-column))))