Re: FEATURE_VI_REGEX_SEARCH bug

2018-11-29 Thread Denys Vlasenko
Fixed in git, thanks! On Sun, Nov 25, 2018 at 8:35 PM Andrey Dobrovolsky wrote: > > If busybox is compiled with FEATURE_VI_REGEX_SEARCH enabled, command > ":s/x/y/" searches not only in the current line, but continues search > after it. This makes range searches (":1,3s/x/y/") work incorrect. For

FEATURE_VI_REGEX_SEARCH bug

2018-11-25 Thread Andrey Dobrovolsky
If busybox is compiled with FEATURE_VI_REGEX_SEARCH enabled, command ":s/x/y/" searches not only in the current line, but continues search after it. This makes range searches (":1,3s/x/y/") work incorrect. For example file "./test" : 1 2 3 $vi ./test :1,2s/3/e/ gives us : 1 2 e This error affects v