home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume25 / input-edit / part01 / README < prev    next >
Encoding:
Text File  |  1991-11-12  |  1.2 KB  |  31 lines

  1. Send bug reports, fixes and enhancements to:
  2. Chris Thewalt (thewalt@ce.berkeley.edu)   
  3. 11/9/91
  4.  
  5. A simple driver called testgl.c has been included, all it does is echo each
  6. line of input that is read.  The user can perform editing and history 
  7. manipulation before hitting RET.
  8.  
  9. The details of getline are all included as comments within getline.c
  10.  
  11. environment:  ANSI C, UNIX (sysv or bsd) or MSDOS with MSC
  12.               (Converting to K&R C should be fairly simple)
  13.          
  14. tested on:    DECstation 5000, Ultrix 4.2 with gcc
  15.           Sun Sparc II, SunOS 4.1.1, gcc
  16.           SGI Iris, IRIX System V.3, cc
  17.           PC, DR DOS 5.0, MSC 6.0
  18.  
  19. description: Getline can be used in programs that want to provide
  20.              an emacs style line editing cabability with history.
  21.          Getline allows the user to edit the current line
  22.              and move through the history list of lines previously
  23.          typed and returns the buffer to the caller when RETURN
  24.          is entered.  Long lines are handled by scrolling.
  25.          Does NOT use termcap, uses only \b to move around. 
  26.  
  27.              The actual editing capabilites are a very small subset
  28.          of emacs commands, but then the package is very small
  29.          and  quite portable.  Get GNU readline if you need more
  30.          powerful editing.
  31.