Function: bb-down
bb-down is an interactive and byte-compiled function defined in
blackbox.el.gz.
Signature
(bb-down COUNT)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/play/blackbox.el.gz
(defun bb-down (count)
(interactive "p" blackbox-mode)
(while (and (> count 0) (< bb-y 8))
(with-no-warnings (next-line))
(setq bb-y (1+ bb-y))
(setq count (1- count))))