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 / ME2MUTT.ZIP / SOFTPOP.MUT < prev    next >
Text File  |  1992-11-09  |  400b  |  17 lines

  1.   ;; softpop.mut : popup a window showing the soft keys
  2.   ;; C Durland    Public Domain
  3.  
  4. ;(include popup.mut)
  5.  
  6. (defun
  7.   softkey-box MAIN        ; popup a box with the softkey bindings in it
  8.   {
  9.     (int j)
  10.  
  11.     (popup-window 5 50 25 10)
  12.     (for (j 1) (< j 10) (+= j 1)
  13.       (wputs (concat " f" j ":  "(key-bound-to (concat "F-" j)))))
  14.     (wputs (concat " f10: "(key-bound-to "F-0")))
  15.   }
  16. )
  17.