comparison lisp/play/blackbox.el @ 85500:0dcd1f3c9909

* 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.
author Dan Nicolaescu <dann@ics.uci.edu>
date Sun, 21 Oct 2007 00:24:32 +0000
parents 527f752989fc
children c2cad5807c15 4bc33ffdda1a
comparison
equal deleted inserted replaced
85499:0fdf639d434f 85500:0dcd1f3c9909
294 (setq count (1- count)))) 294 (setq count (1- count))))
295 295
296 (defun bb-up (count) 296 (defun bb-up (count)
297 (interactive "p") 297 (interactive "p")
298 (while (and (> count 0) (> bb-y -1)) 298 (while (and (> count 0) (> bb-y -1))
299 (previous-line 1) 299 (forward-line -1)
300 (setq bb-y (1- bb-y)) 300 (setq bb-y (1- bb-y))
301 (setq count (1- count)))) 301 (setq count (1- count))))
302 302
303 (defun bb-down (count) 303 (defun bb-down (count)
304 (interactive "p") 304 (interactive "p")
305 (while (and (> count 0) (< bb-y 8)) 305 (while (and (> count 0) (< bb-y 8))
306 (next-line 1) 306 (forward-line 1)
307 (setq bb-y (1+ bb-y)) 307 (setq bb-y (1+ bb-y))
308 (setq count (1- count)))) 308 (setq count (1- count))))
309 309
310 (defun bb-eol () 310 (defun bb-eol ()
311 (interactive) 311 (interactive)