home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / gnugrep.zip / PROJECTS < prev    next >
Text File  |  1992-09-28  |  684b  |  16 lines

  1. Write Texinfo documentation for grep.  The manual page would be a good
  2. place to start, but Info documents are also supposed to contain a
  3. tutorial and examples.
  4.  
  5. Fix the DFA matcher to never use exponential space.  (Fortunately, these
  6. cases are rare.)
  7.  
  8. Improve the performance of the regex backtracking matcher.  This matcher
  9. is agonizingly slow, and is responsible for grep sometimes being slower
  10. than Unix grep when backreferences are used.
  11.  
  12. Provide support for the Posix [= =] and [. .] constructs.  This is
  13. difficult because it requires locale-dependent details of the character
  14. set and collating sequence, but Posix does not standardize any method
  15. for accessing this information!
  16.