home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d7xx
/
d768
/
uedit.lha
/
Uedit
/
Documentation
/
KnownBugs
next >
Wrap
Text File
|
1992-11-22
|
2KB
|
41 lines
Known Bugs
This isn't a bug actually: The grep string /\(^.*\n\)\1/\1/ should find pairs
of identical lines and eliminate one of them. But in Uedit's grep you can
only use the carat ^ (force match to start of line) as the very first thing
in grep strings. I did this on purpose to encourage people to type in an eol
instead of using the carat; searching for an eol is faster than testing for
start of line. Only at the front of the string do you need to use the carat
to force a match to start of line, and only then because at start of file
there is no eol before the beginning of the line. To find pairs of identical
lines and eliminate one of them, use this grep string:
/^\(.*\n\)\1/\1/
When you search with the above command and find a match, only 1 line is
colored because only the cursor line gets refreshed. To make it color both
matched lines, you must add a refreshDisplay to the virtual-f10 command.
Title Bar with 1 bitplane: When you switch to a 1 bitplane screen the title
bar is left blank under AmigaDOS 2.0. When you switch back to a 2 bitplane
screen from 1 bitplane, the title bar appears but in the wrong colors. If
you go to/from tiny window, the title bar is updated, however, and behaves
correctly thereafter. This bug doesn't happen with Wb1.3.
Menu button: Used to be when you flicked the menu button during a process it
turned on the internal noDisplay flag, suppressing displaying until the
process completed. This sped up the process considerably. Now to do the
same thing you need actually to display a menu briefly, not just flick the
button lighting up the title bar.
Msg line: When you select from a menu, the instructional msg which tells you
to type an input may fail to appear. If the msg does not appear (and leaves
the msg line blank), do one of the following:
Flick the menu button, and the msg should then appear.
Or wait 4 seconds, and then it will appear.
Or press Amiga-ESC to abort, and reselect the cmd from the menu.
(See Revision-History.)