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

  1. System: rn version 4.3
  2. Patch #: 8
  3. Priority: MEDIUM
  4. Subject: default doesn't work in normal vs mailbox question
  5. >From: lwall@sdcrdcf.UUCP (Larry Wall)
  6.  
  7. Description:
  8.     Through a mental short circuit on the part of the author, the
  9.     default mechanism was munched on the question you are asked
  10.     when saving an article regarding whether you want it to be a
  11.     mailbox or a normal file.
  12.  
  13. Repeat-By:
  14.     Save a file to a new name.  When it asks what kind of file you want
  15.     to create, type space.  It will get mad at you.
  16.  
  17. Fix:    From rn, say "| patch -d DIR", where DIR is your rn source directory.
  18.     Outside of rn, say "cd DIR; patch <thisarticle".  If you don't have
  19.     the patch program, apply the following by hand, or get patch.
  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: 7
  28. 1c1
  29. < Patch #: 7
  30. ---
  31. > Patch #: 8
  32.  
  33. Index: respond.c
  34. Prereq: 4.3
  35. *** respond.c.old    Tue May 14 08:57:20 1985
  36. --- respond.c    Tue May 14 08:57:24 1985
  37. ***************
  38. *** 1,4
  39. ! /* $Header: respond.c,v 4.3 85/05/01 11:47:04 lwall Exp $
  40.    *
  41.    * $Log:    respond.c,v $
  42.    * Revision 4.3  85/05/01  11:47:04  lwall
  43.  
  44. --- 1,4 -----
  45. ! /* $Header: respond.c,v 4.3.1.2 85/05/14 08:55:15 lwall Exp $
  46.    *
  47.    * $Log:    respond.c,v $
  48.    * Revision 4.3.1.2  85/05/14  08:55:15  lwall
  49. ***************
  50. *** 1,6
  51.   /* $Header: respond.c,v 4.3 85/05/01 11:47:04 lwall Exp $
  52.    *
  53.    * $Log:    respond.c,v $
  54.    * Revision 4.3  85/05/01  11:47:04  lwall
  55.    * Baseline for release with 4.3bsd.
  56.    * 
  57.  
  58. --- 1,12 -----
  59.   /* $Header: respond.c,v 4.3.1.2 85/05/14 08:55:15 lwall Exp $
  60.    *
  61.    * $Log:    respond.c,v $
  62. +  * Revision 4.3.1.2  85/05/14  08:55:15  lwall
  63. +  * Default for normal/mailbox question was applied to wrong buffer.
  64. +  * 
  65. +  * Revision 4.3.1.1  85/05/10  11:37:33  lwall
  66. +  * Branch for patches.
  67. +  * 
  68.    * Revision 4.3  85/05/01  11:47:04  lwall
  69.    * Baseline for release with 4.3bsd.
  70.    * 
  71. ***************
  72. *** 147,153
  73.             reask_save:
  74.           in_char(cmd_buf);
  75.           putchar('\n') FLUSH;
  76. !         setdef(cmd_buf,dflt);
  77.   #ifdef VERIFY
  78.           printcmd();
  79.   #endif
  80.  
  81. --- 153,159 -----
  82.             reask_save:
  83.           in_char(cmd_buf);
  84.           putchar('\n') FLUSH;
  85. !         setdef(buf,dflt);
  86.   #ifdef VERIFY
  87.           printcmd();
  88.   #endif
  89.  
  90.  
  91.