home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d7xx / d768 / uedit.lha / Uedit / Documentation / KnownBugs next >
Text File  |  1992-11-22  |  2KB  |  41 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.  
  19. Title Bar with 1 bitplane:  When you switch to a 1 bitplane screen the title
  20. bar is left blank under AmigaDOS 2.0.  When you switch back to a 2 bitplane
  21. screen from 1 bitplane, the title bar appears but in the wrong colors.  If
  22. you go to/from tiny window, the title bar is updated, however, and behaves
  23. correctly thereafter.  This bug doesn't happen with Wb1.3.
  24.  
  25.  
  26. Menu button:  Used to be when you flicked the menu button during a process it
  27. turned on the internal noDisplay flag, suppressing displaying until the
  28. process completed.  This sped up the process considerably.  Now to do the
  29. same thing you need actually to display a menu briefly, not just flick the
  30. button lighting up the title bar.
  31.  
  32.  
  33. Msg line:  When you select from a menu, the instructional msg which tells you
  34. to type an input may fail to appear.  If the msg does not appear (and leaves
  35. the msg line blank), do one of the following:
  36.     Flick the menu button, and the msg should then appear.
  37.     Or wait 4 seconds, and then it will appear.
  38.     Or press Amiga-ESC to abort, and reselect the cmd from the menu.
  39.  
  40. (See Revision-History.)
  41.