Function: bubbles--char-at

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

Signature

(bubbles--char-at ROW COL)

Documentation

Return character at bubble ROW and COL.

Source Code

;; Defined in /usr/src/emacs/lisp/play/bubbles.el.gz
(defun bubbles--char-at (row col)
  "Return character at bubble ROW and COL."
  (save-excursion
    (if (bubbles--goto row col)
        (char-after (point))
      nil)))