home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / m / me_cd25.zip / MUTT2.ZIP / SSCROLL.MUT < prev    next >
Text File  |  1992-11-09  |  353b  |  19 lines

  1.   ;; C Durland    Public Domain
  2. (defun
  3.   smooth-scroll-up
  4.   {
  5.     (if (== 1 (window-row)) (scroll-up))
  6.     (previous-line)
  7.   }
  8.   smooth-scroll-down
  9.   {
  10.     (if (== (window-row)(window-height -1)) (scroll-down))
  11.     (next-line)
  12.   }
  13.   MAIN
  14.   {
  15.     (bind-to-key "smooth-scroll-up"   "F-C")
  16.     (bind-to-key "smooth-scroll-down" "F-D")
  17.   }
  18. )
  19.