diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-10-21 00:24:32 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-10-21 00:24:32 +0000 |
commit | 729f1525da7a8816e655daa51f6f4b2e7d7a043b (patch) | |
tree | 63be73ceb74026b6c20da50e9a4631f184d2b1f0 /lisp/play/blackbox.el | |
parent | 64b53a1f5a6e4cc53763d3d8879d7509ceae5e6a (diff) | |
download | emacs-729f1525da7a8816e655daa51f6f4b2e7d7a043b.tar.gz |
* textmodes/reftex.el: Move require easymenu before first use.
(reftex-info): Require info at compile too.
* textmodes/org-publish.el (org-publish-org-to-html)
(org-publish-org-to): Require org at compile time too.
(org-publish-attachment): Require at compile time too.
* term/tty-colors.el (w32-tty-standard-colors): Pacify
byte-compiler.
* term/pc-win.el (frame-creation-function-alist): Add to this
instead of setting frame-creation-function.
* play/blackbox.el (bb-up, bb-down): Use forward-line.
* net/rcirc.el (rcirc-markup-text-functions): Move definition
earlier.
* calendar/todo-mode.el: Require calendar at compile time.
* calendar/cal-islam.el: Require diary-lib at compile time.
* calendar/cal-hebrew.el: Require diary-lib and holidays at
compile time.
* w32-vars.el: Provide w32-vars.
* term/w32-win.el: Require w32-vars.
(w32-color-map): Pacify byte-compiler.
* loadup.el: Load w32-wars before term/w32-win.
Diffstat (limited to 'lisp/play/blackbox.el')
-rw-r--r-- | lisp/play/blackbox.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/play/blackbox.el b/lisp/play/blackbox.el index f21a4458665..699aa91abcf 100644 --- a/lisp/play/blackbox.el +++ b/lisp/play/blackbox.el @@ -296,14 +296,14 @@ a reflection." (defun bb-up (count) (interactive "p") (while (and (> count 0) (> bb-y -1)) - (previous-line 1) + (forward-line -1) (setq bb-y (1- bb-y)) (setq count (1- count)))) (defun bb-down (count) (interactive "p") (while (and (> count 0) (< bb-y 8)) - (next-line 1) + (forward-line 1) (setq bb-y (1+ bb-y)) (setq count (1- count)))) |