home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / sed-2.05-src.lha / sed-2.05 / ABOUT.RX next >
Text File  |  1994-05-13  |  949b  |  24 lines

  1.  
  2. Rx is found in the files `rx.h' and `rx.c'.  It is an upward
  3. compatable replacement for GNU regex.  If you want to try GNU Rx in
  4. your own application, the documentation for GNU _regex_ will tell you
  5. how.
  6.  
  7. Notes:
  8.  
  9. * This release of Rx is not quite ready for use in GNU Emacs.
  10.  
  11. * When initializing a variable of type `struct re_pattern_buf',
  12.   use `bzero' or an equivelent function first.  Some older code
  13.   might try to work by assigning 0 to specific fields defined in 
  14.   GNU regex.  All of those fields still exist, but new fields have
  15.   been added (and more may be in the future).
  16.  
  17. * Rx keeps a cache of information about patterns.  The size of this
  18.   cache may effect performance.  The default size should be large
  19.   enough for most applications.  However, for a program like `sed',
  20.   there is no reason to keep the cache small.  Such programs want to
  21.   assign as large a number as possible without thrashing (see main in
  22.   sed.c for example).
  23.  
  24.