home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume1 / rn / patch06 < prev    next >
Encoding:
Text File  |  1986-11-30  |  2.0 KB  |  83 lines

  1. System: rn version 4.3
  2. Patch #: 6
  3. Priority: HIGH
  4. Subject: devtty isn't defined for TERMIO systems
  5. >From: jimt@bmcg.UUCP (Jim Tollefson)
  6.  
  7. Description:
  8.     On TERMIO systems the variable devtty isn't defined.
  9.  
  10. Fix:    From rn, say "| patch -d DIR", where DIR is your rn source directory.
  11.     Outside of rn, say "cd DIR; patch <thisarticle".  If you don't have
  12.     the patch program, apply the following by hand, or get patch.
  13.  
  14.     If patch indicates that patchlevel is the wrong version, you may need
  15.     to apply one or more previous patches, or the patch may already
  16.     have been applied.  See the patchlevel file to find out what has or
  17.     has not been applied.  In any event, don't continue with the patch.
  18.  
  19. Index: patchlevel
  20. Prereq: 5
  21. 1c1
  22. < Patch #: 5
  23. ---
  24. > Patch #: 6
  25.  
  26. Index: term.h
  27. Prereq: 4.3
  28. *** term.h.old    Mon May 13 15:53:05 1985
  29. --- term.h    Mon May 13 15:53:09 1985
  30. ***************
  31. *** 1,4
  32. ! /* $Header: term.h,v 4.3 85/05/01 11:51:36 lwall Exp $
  33.    *
  34.    * $Log:    term.h,v $
  35.    * Revision 4.3  85/05/01  11:51:36  lwall
  36.  
  37. --- 1,4 -----
  38. ! /* $Header: term.h,v 4.3.1.2 85/05/13 15:52:05 lwall Exp $
  39.    *
  40.    * $Log:    term.h,v $
  41.    * Revision 4.3.1.2  85/05/13  15:52:05  lwall
  42. ***************
  43. *** 1,6
  44.   /* $Header: term.h,v 4.3 85/05/01 11:51:36 lwall Exp $
  45.    *
  46.    * $Log:    term.h,v $
  47.    * Revision 4.3  85/05/01  11:51:36  lwall
  48.    * Baseline for release with 4.3bsd.
  49.    * 
  50.  
  51. --- 1,12 -----
  52.   /* $Header: term.h,v 4.3.1.2 85/05/13 15:52:05 lwall Exp $
  53.    *
  54.    * $Log:    term.h,v $
  55. +  * Revision 4.3.1.2  85/05/13  15:52:05  lwall
  56. +  * Declared devtty on TERMIO system.
  57. +  * 
  58. +  * Revision 4.3.1.1  85/05/10  11:41:24  lwall
  59. +  * Branch for patches.
  60. +  * 
  61.    * Revision 4.3  85/05/01  11:51:36  lwall
  62.    * Baseline for release with 4.3bsd.
  63.    * 
  64. ***************
  65. *** 20,25
  66.   #endif lint
  67.   #else FIONREAD
  68.   int circfill();
  69.   #ifndef lint
  70.   #define input_pending() (nextin!=nextout || circfill())
  71.   #else
  72.  
  73. --- 26,32 -----
  74.   #endif lint
  75.   #else FIONREAD
  76.   int circfill();
  77. + EXT int devtty INIT(0);
  78.   #ifndef lint
  79.   #define input_pending() (nextin!=nextout || circfill())
  80.   #else
  81.  
  82.  
  83.