Hi, On Wed, Jun 30, 2021 at 6:16 AM Bram Moolenaar <[email protected]> wrote:
> > Ondřej Súkup wrote: > > > I think patch 2981 is the cause of this problem ... > > > > in my builds, 2980 and older run tests without problems, after > > including 2981 fails in this test > > That makes sense, it added the little-endian check. So the solution is > probably to disable little-endian when detecting a 32 bit system. > Not sure how to reliable do that. Or the test for little endian should > check with "!=" instead of "==", instead of: > > let little_endian = b[1008:1015] == 0z33323130.00000000 > > use: > > let little_endian = b[1008:1015] != (big-endian value) > > > I have created PR #8485 to address this issue. Regards, Yegappan -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/CAAW7x7ma7W3yjLaTYntuqxB_NtrWXbsSf51bp51e1fa4m1ZVVg%40mail.gmail.com.
