home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume9 / teco / part01 / manpage.doc < prev    next >
Encoding:
Text File  |  1987-03-11  |  1.3 KB  |  45 lines

  1. NAME
  2.     te - TECO text editor
  3.  
  4. SYNOPSIS
  5.     te [filename]
  6.  
  7. DESCRIPTION
  8.     te is an implementation of TECO written in C to run under
  9.     Ultrix 1.2.
  10.  
  11.     te implements DEC standard TECO, with some exceptions
  12.     described below, plus some extensions for the Ultrix
  13.     environment.
  14.  
  15.     te assumes a VT100-type terminal, and its display
  16.     driver is hard-coded for such.
  17.  
  18. DOCUMENTATION
  19.     The DEC Standard TECO book describes the basic editing
  20.     functions of TECO.  teco.doc describes the differences
  21.     between te and standard TECO, including the extensions
  22.     for the Ultrix environment.  maketeco.doc describes the
  23.     files that comprise te, and the build procedure.
  24.  
  25. FILES
  26.     ~/.tecorc    editor startup file
  27.     <file>.tmp    temporary output file(s)
  28.     <file>.bak    previous version of edited file
  29.     /etc/termcap    describes terminal (used only to find width of VT100)
  30.  
  31. AUTHOR
  32.     Matt Fichtenbaum, GenRad Inc., Concord, Mass.
  33.  
  34. BUGS
  35.     te acquires memory for its buffer using malloc(), but
  36.     never returns the space.  This can cause the task in
  37.     memory to appear to be larger than it is.
  38.  
  39.     Several of the standard display features of TECO, most
  40.     notably the -256+n:W command used by interpretive editing
  41.     macros, are unimplemented.  There are undoubtedly some
  42.     subtle bugs in the display handler for the features that
  43.     are implemented.
  44.  
  45.