home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume8 / display.pch < prev    next >
Internet Message Format  |  1987-03-05  |  2KB

  1. From pyramid!amdahl!ptsfa!vixie!paul Thu Mar  5 23:41:29 1987
  2. Received: by mirror.TMC.COM (4.12/UUCP-Project/rel-1.0/08-20-86)
  3.     id AA13744; Thu, 5 Mar 87 23:41:26 est
  4. Received: by amdahl.UUCP (4.12/UTS580_/\oo/\)
  5.     id AA29361; Thu, 5 Mar 87 17:28:49 PST
  6. Received: by vixie.UUCP (5.54/smail2.3/02-18-87)
  7.     id AA00160; Thu, 5 Mar 87 15:14:16 PST
  8. Date: Thu, 5 Mar 87 15:14:16 PST
  9. From: paul@vixie.UUCP (Paul Vixie Esq)
  10. Message-Id: <8703052314.AA00160@vixie.UUCP>
  11. To: rs@mirror
  12. Subject: copy of what I just sent out in net.sources.bugs
  13. Status: R
  14.  
  15. Patches for Display 1.0.
  16.  
  17. Okay, I'm embarrassed.  I'm mailing this to the moderator, in hopes that
  18. he will simply apply this patch to the archived version, saving a seperate
  19. archive entry for patches to something as trivial as this display program.
  20.  
  21. Apply this article using patch and re-make.  Sorry for the inconvenience...
  22.  
  23. *** display.c.orig    Thu Mar  5 15:02:37 1987
  24. --- display.c    Thu Mar  5 01:48:01 1987
  25. ***************
  26. *** 1,6 ****
  27. --- 1,7 ----
  28.   /* display.c - repeatedly display command through curses
  29.    * vix 18apr86 [written]
  30.    * vix 15dec86 [major overhaul]
  31. +  * vix 04mar87 [fix command line parsing, from Jeremy Primer, primer@huma1]
  32.    */
  33.   
  34.   
  35. ***************
  36. *** 100,106 ****
  37.               if (Command != NULL)
  38.                   usage();    /* already got this once */
  39.               else
  40. !                 Command = argv[1];
  41.       }
  42.       if (Command == NULL)
  43.           usage();            /* no Command on line */
  44. --- 101,107 ----
  45.               if (Command != NULL)
  46.                   usage();    /* already got this once */
  47.               else
  48. !                 Command = argv[argn];
  49.       }
  50.       if (Command == NULL)
  51.           usage();            /* no Command on line */
  52.  
  53.  
  54. *** display.man.orig    Thu Mar  5 15:01:55 1987
  55. --- display.man    Thu Mar  5 15:02:07 1987
  56. ***************
  57. *** 1,4 ****
  58. ! .TH AT 1 "December 15, 1986"
  59.   .UC 4
  60.   .SH NAME
  61.   display \- repeat a command through curses for minimal update
  62. --- 1,4 ----
  63. ! .TH DISPLAY 1 "December 15, 1986"
  64.   .UC 4
  65.   .SH NAME
  66.   display \- repeat a command through curses for minimal update
  67.  
  68.  
  69.