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

  1. System: rn version 4.3
  2. Patch #: 12
  3. Priority: LOW
  4. Subject: Rnmail shouldn't ask editor if EDITOR or VISUAL defined
  5. >From: markb@cbosgd.UUCP (Mark Horton)
  6.  
  7. Description:
  8.     Pnews doesn't ask you for your editor if you have EDITOR or VISUAL
  9.     defined.  Rnmail should (shouldn't?) do likewise.
  10.  
  11. Fix:    From rn, say "| patch -d DIR", where DIR is your rn source directory.
  12.     Outside of rn, say "cd DIR; patch <thisarticle".  If you don't have
  13.     the patch program, apply the following by hand, or get patch.
  14.  
  15.     If patch indicates that patchlevel is the wrong version, you may need
  16.     to apply one or more previous patches, or the patch may already
  17.     have been applied.  See the patchlevel file to find out what has or
  18.     has not been applied.  In any event, don't continue with the patch.
  19.  
  20. Index: patchlevel
  21. Prereq: 11
  22. 1c1
  23. < Patch #: 11
  24. ---
  25. > Patch #: 12
  26.  
  27. Index: Rnmail.SH
  28. Prereq: 4.3.1.2
  29. *** Rnmail.SH.old    Mon May 20 16:26:20 1985
  30. --- Rnmail.SH    Mon May 20 16:26:27 1985
  31. ***************
  32. *** 4,10
  33.   echo "Extracting Rnmail (with variable substitutions)"
  34.   $spitshell >Rnmail <<!GROK!THIS!
  35.   $startsh
  36. ! # $Header: Rnmail.SH,v 4.3.1.2 85/05/17 10:36:19 lwall Exp $
  37.   # 
  38.   # $Log:    Rnmail.SH,v $
  39.   # Revision 4.3.1.2  85/05/17  10:36:19  lwall
  40.  
  41. --- 4,10 -----
  42.   echo "Extracting Rnmail (with variable substitutions)"
  43.   $spitshell >Rnmail <<!GROK!THIS!
  44.   $startsh
  45. ! # $Header: Rnmail.SH,v 4.3.1.3 85/05/20 16:25:17 lwall Exp $
  46.   # 
  47.   # $Log:    Rnmail.SH,v $
  48.   # Revision 4.3.1.3  85/05/20  16:25:17  lwall
  49. ***************
  50. *** 7,12
  51.   # $Header: Rnmail.SH,v 4.3.1.2 85/05/17 10:36:19 lwall Exp $
  52.   # 
  53.   # $Log:    Rnmail.SH,v $
  54.   # Revision 4.3.1.2  85/05/17  10:36:19  lwall
  55.   # Added "-- " before .signature.
  56.   # 
  57.  
  58. --- 7,15 -----
  59.   # $Header: Rnmail.SH,v 4.3.1.3 85/05/20 16:25:17 lwall Exp $
  60.   # 
  61.   # $Log:    Rnmail.SH,v $
  62. + # Revision 4.3.1.3  85/05/20  16:25:17  lwall
  63. + # Shouldn't ask editor if EDITOR or VISUAL defined.
  64. + # 
  65.   # Revision 4.3.1.2  85/05/17  10:36:19  lwall
  66.   # Added "-- " before .signature.
  67.   # 
  68. ***************
  69. *** 173,179
  70.       rescue="sleep 1; $cat $tmpart >>${HOME-$LOGDIR}/dead.letter ; $echo saved in ${HOME-$LOGDIR}/dead.letter ; $rm -f $tmpart; exit"
  71.       trap "$rescue" 1
  72.       trap : 2
  73. !     tmp=h
  74.       while $test "$tmp" = h ; do
  75.           $echo $n "Editor [${VISUAL-${EDITOR-$defeditor}}]: $c"
  76.           read tmp
  77.  
  78. --- 176,189 -----
  79.       rescue="sleep 1; $cat $tmpart >>${HOME-$LOGDIR}/dead.letter ; $echo saved in ${HOME-$LOGDIR}/dead.letter ; $rm -f $tmpart; exit"
  80.       trap "$rescue" 1
  81.       trap : 2
  82. !     case "${VISUAL-${EDITOR-}}" in
  83. !     '')
  84. !         tmp=h
  85. !         ;;
  86. !     *)
  87. !         tmp=''
  88. !         ;;
  89. !     esac
  90.       while $test "$tmp" = h ; do
  91.           $echo $n "Editor [${VISUAL-${EDITOR-$defeditor}}]: $c"
  92.           read tmp
  93.  
  94.  
  95.