home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / gnu / utils / bug / 2481 < prev    next >
Encoding:
Internet Message Format  |  1993-01-28  |  884 b 

  1. Path: sparky!uunet!stanford.edu!ames!sun-barr!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!cis.ohio-state.edu!lynx.COM!bitbug
  2. From: bitbug@lynx.COM (James Buster)
  3. Newsgroups: gnu.utils.bug
  4. Subject: make 3.63 bug in --help output
  5. Date: 26 Jan 1993 21:58:08 -0500
  6. Organization: GNUs Not Usenet
  7. Lines: 16
  8. Sender: daemon@cis.ohio-state.edu
  9. Approved: bug-gnu-utils@prep.ai.mit.edu
  10. Distribution: gnu
  11. Message-ID: <m0nGlkX-0000S9C@liberator.lynx.com>
  12.  
  13. There should be a space after the option names and their description.
  14. Without this space, the help output is harder to read. Here is a
  15. unified diff:
  16.  
  17. --- main.c    Tue Jan 26 01:33:24 1993
  18. +++ main.c.new    Tue Jan 26 01:33:11 1993
  19. @@ -1296,7 +1296,7 @@
  20.            buf[0] = '\0';
  21.          }
  22.  
  23. -      fprintf (stderr, "%*s%s.\n",
  24. +      fprintf (stderr, "%*s %s.\n",
  25.             - DESCRIPTION_COLUMN,
  26.             buf, cs->description);
  27.      }
  28.  
  29.