home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume1 / rn / patch05 < prev    next >
Text File  |  1986-11-30  |  3KB  |  96 lines

  1. System: rn version 4.3
  2. Patch #: 5
  3. Priority: LOW
  4. Subject: after exiting newsgroup with 'Q', space won't reenter newsgroup
  5. >From: lwall@sdcrdcf.UUCP (Larry Wall)
  6.  
  7. Description:
  8.     When you exit a newsgroup with 'Q', which leaves you in the same
  9.     newsgroup at the newsgroup selection level, the default command
  10.     remains 'n' or '^N', despite what the prompt says.  Typing space
  11.     then does not have the expected result.
  12.  
  13. Fix:    From rn, say "| patch -d DIR", where DIR is your rn source directory.
  14.     Outside of rn, say "cd DIR; patch <thisarticle".  If you don't have
  15.     the patch program, apply the following by hand, or get patch.
  16.  
  17.     Warning: this patch is not reversed.  If the patch program says
  18.     it is, then this patch has already been applied, and you should
  19.     not apply it again.
  20.  
  21.     If patch indicates that patchlevel is the wrong version, you may need
  22.     to apply one or more previous patches, or the patch may already
  23.     have been applied.  See the patchlevel file to find out what has or
  24.     has not been applied.  In any event, don't continue with the patch.
  25.  
  26. Index: patchlevel
  27. Prereq: 4
  28. 1c1
  29. < Patch #: 4
  30. ---
  31. > Patch #: 5
  32.  
  33. Index: rn.c
  34. Prereq: 4.3
  35. *** rn.c.old    Mon May 13 09:36:19 1985
  36. --- rn.c    Mon May 13 09:36:25 1985
  37. ***************
  38. *** 8,14
  39.    *      2.0: 09/01/83
  40.    */
  41.   
  42. ! static char rnid[] = "@(#)$Header: rn.c,v 4.3 85/05/01 11:47:56 lwall Exp $";
  43.   
  44.   /* $Log:    rn.c,v $
  45.    * Revision 4.3  85/05/01  11:47:56  lwall
  46.  
  47. --- 8,14 -----
  48.    *      2.0: 09/01/83
  49.    */
  50.   
  51. ! static char rnid[] = "@(#)$Header: rn.c,v 4.3.1.2 85/05/13 09:34:53 lwall Exp $";
  52.   
  53.   /* $Log:    rn.c,v $
  54.    * Revision 4.3.1.2  85/05/13  09:34:53  lwall
  55. ***************
  56. *** 11,16
  57.   static char rnid[] = "@(#)$Header: rn.c,v 4.3 85/05/01 11:47:56 lwall Exp $";
  58.   
  59.   /* $Log:    rn.c,v $
  60.    * Revision 4.3  85/05/01  11:47:56  lwall
  61.    * Baseline for release with 4.3bsd.
  62.    * 
  63.  
  64. --- 11,22 -----
  65.   static char rnid[] = "@(#)$Header: rn.c,v 4.3.1.2 85/05/13 09:34:53 lwall Exp $";
  66.   
  67.   /* $Log:    rn.c,v $
  68. +  * Revision 4.3.1.2  85/05/13  09:34:53  lwall
  69. +  * Fixed default after do_newsgroup() returns from Q command.
  70. +  * 
  71. +  * Revision 4.3.1.1  85/05/10  11:38:08  lwall
  72. +  * Branch for patches.
  73. +  * 
  74.    * Revision 4.3  85/05/01  11:47:56  lwall
  75.    * Baseline for release with 4.3bsd.
  76.    * 
  77. ***************
  78. *** 461,466
  79.               ng++;
  80.               break;
  81.               case NG_ASK:
  82.               goto reask_newsgroup;
  83.               case NG_MINUS:
  84.               ng = recent_ng;    /* recall previous newsgroup */
  85.  
  86. --- 467,473 -----
  87.               ng++;
  88.               break;
  89.               case NG_ASK:
  90. +             dfltcmd = "ynq";
  91.               goto reask_newsgroup;
  92.               case NG_MINUS:
  93.               ng = recent_ng;    /* recall previous newsgroup */
  94.  
  95.  
  96.