Function: bb-left
bb-left is an interactive and byte-compiled function defined in
blackbox.el.gz.
Signature
(bb-left COUNT)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/play/blackbox.el.gz
(defun bb-left (count)
(interactive "p" blackbox-mode)
(while (and (> count 0) (> bb-x -1))
(backward-char 2)
(setq bb-x (1- bb-x))
(setq count (1- count))))