home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 451.lha / qed_v1.05 / Whats_New < prev    next >
Text File  |  1990-12-08  |  2KB  |  45 lines

  1. 10/6/90               Whats New with QED 1.0
  2.  
  3. QED 1.0 is almost done now.
  4.  
  5. A fix added for those using KS 1.2 (this was a good lesson for me
  6. who switches between Lattice, and Manx compilers, and forgot all
  7. about the fact that I was using Manx's pre-compiled headers).
  8.  
  9. A fix for the Find Matching feature - now gives overriding priority
  10. to in double quote conditions (hence everything within double quotes
  11. is now ignored except for characters after backslashes which are
  12. further ignored so that " \" " wont find the interim double quote,
  13. and statements such as printf("couldn't handle this before"); are
  14. now cool (the single quote is now ignored).
  15.  
  16. A fix for insertion of large blocks, and some other functions in
  17. which large amounts of extra working space have to be allocated.
  18.  
  19. The Search & Replace function now does an initial check to see
  20. if its on a matching string - if so, its the first string
  21. replaced in prompted mode, single replace mode, etc.  This is
  22. only true when searching forwards - when searching backwards
  23. an initial check is unneeded, and undesireable (else you will
  24. find it quite easy to replace a string like TEST with TESTING,
  25. only to find that you are queried for the string TEST -in-
  26. TESTING again - this is a recursion problem with backwards
  27. search & repalce which some text editors don't handle well
  28. at all).
  29.  
  30. As an adjunct to the above, there is a new command which allows
  31. you to check to see if the cursor is on a matching string
  32. (case, or non-case sensitive search mode rules apply).  This
  33. new command is only useful within ARexx macros which need to
  34. check for this condition.
  35.  
  36. The SEARCH command is unchanged - it always finds the next
  37. matching string, and not what the cursor is on.  The new
  38. command mentioned above would typically be used in adjunct
  39. with the SEARCH command in macros.  When SEARCH is used
  40. from the pull-down menus, there is little point in searching
  41. for a string which you are already on, so the behavior
  42. is unchanged.
  43.  
  44.  
  45.