7 Sep
2022
7 Sep
'22
1:23 p.m.
Huw Davies (@huw) commented about programs/notepad/main.c:
+ +VOID UpdateStatusBar(VOID) +{ + int currentLine; + int currentCol = -1; + wchar_t statusTxt[25]; + int lineIndex; + DWORD selStart; + DWORD selEnd; + + SendMessageW(Globals.hEdit,EM_GETSEL , (WPARAM)&selStart,(LPARAM)&selEnd); + if(selStart == selEnd) + Globals.trackedSel = selStart; + if(selStart < Globals.trackedSel) + currentCol = selStart; + else And this has a trailing space after the `else`. There are other instances below as well.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/787#note_7877