Function: bb-up

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

Signature

(bb-up COUNT)

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/play/blackbox.el.gz
(defun bb-up (count)
  (interactive "p" blackbox-mode)
  (while (and (> count 0) (> bb-y -1))
    (with-no-warnings (previous-line))
    (setq bb-y (1- bb-y))
    (setq count (1- count))))