home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 517b.lha / Uedit_v2.6e / KnownBugs < prev    next >
Text File  |  1991-06-09  |  2KB  |  37 lines

  1.                                  Known Bugs
  2.  
  3. This isn't a bug actually:  The grep string /\(^.*\n\)\1/\1/ should find pairs
  4. of identical lines and eliminate one of them.  But in Uedit's grep you can
  5. only use the carat ^ (force match to start of line) as the very first thing
  6. in grep strings.  I did this on purpose to encourage people to type in an eol
  7. instead of using the carat; searching for an eol is faster than testing for
  8. start of line.  Only at the front of the string do you need to use the carat
  9. to force a match to start of line, and only then because at start of file
  10. there is no eol before the beginning of the line.  To find pairs of identical
  11. lines and eliminate one of them, use this grep string:
  12.         /^\(.*\n\)\1/\1/
  13.  
  14. When you search with the above command and find a match, only 1 line is
  15. colored because only the cursor line gets refreshed.  To make it color both
  16. matched lines, you must add a refreshDisplay to the virtual-f10 command.
  17.  
  18. Title Bar with 1 bitplane:  When you switch to a 1 bitplane screen the title
  19. bar is left blank.  If you go to/from tiny window, the title bar is updated,
  20. however, and behaves correctly thereafter.  This bug only happens with
  21. Workbench 2.0.
  22.  
  23. If you press the menu button to display a menu, sometimes the menu may be
  24. chopped off by Uedit.  This is a cosmetic bug and you can get the full menu
  25. displayed again by reselecting the menu with the mouse.
  26.  
  27. ((In Workbench 1.3 there was a handy menuDrawn flag in the private area of
  28. the Intuitionbase structure which was elminated in Workbench 2.0; this flag
  29. used to tell Uedit's display routines when not to update the display because
  30. a menu was visible.  Uedit for the time being needs to be compatible with the
  31. new and old Workbench, so the display routines have no way of knowing whether
  32. you are looking at a menu or not; thus sometimes during an idle period a
  33. display update occurs when you are examining a menu, and part of the menu is
  34. chopped off by the display update.  This is cosmetic and harmless.))
  35.  
  36. (See Revision-History.)
  37.