Function: bb-right

bb-right is an interactive and byte-compiled function defined in blackbox.el.gz.

Signature

(bb-right COUNT)

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/play/blackbox.el.gz
(defun bb-right (count)
  (interactive "p" blackbox-mode)
  (while (and (> count 0) (< bb-x 8))
    (forward-char 2)
    (setq bb-x (1+ bb-x))
    (setq count (1- count))))