home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / lang / tcl / 2132 < prev    next >
Encoding:
Internet Message Format  |  1992-12-16  |  1017 b 

  1. Path: sparky!uunet!spool.mu.edu!agate!garnet.berkeley.edu!jak
  2. From: jak@garnet.berkeley.edu (John A. Kunze)
  3. Newsgroups: comp.lang.tcl
  4. Subject: printing man pages in correct order?
  5. Date: 17 Dec 1992 03:03:36 GMT
  6. Organization: University of California, Berkeley
  7. Lines: 16
  8. Distribution: world
  9. Message-ID: <1goqm8INN6me@agate.berkeley.edu>
  10. NNTP-Posting-Host: garnet.berkeley.edu
  11.  
  12. Is there an easy way to troff all the Tcl/Tk man pages in an order
  13. that it makes sense to bind them in?  Right now I do something like
  14.  
  15.     troff -man *.man | lpr -Pmyprinter
  16.  
  17. and stuff comes out in *mostly* the right order.  The choice of filenames
  18. for some of the pages (sections really) causes weird ordering glitches:
  19.  
  20.   library(3) falls off the end,
  21.   tk_listboxSingleSelect(1) sits with listbox(1) instead of with tk_menus(1),
  22.   tk_menus(1) comes after toplevel(1) instead of before, and
  23.   DoOneEvent(1) comes before CreateFileHandler(1) instead of after
  24.  
  25. I think there are others too.  A script would help, or changing filenames.
  26.  
  27. -John
  28.