On Tue Jul 15 08:13:10 2025 +0000, Alexandre Julliard wrote:
> > Remove en_US.po as it will simply duplicate en.po
> It's needed for some special cases, like using UTF-8 characters in a
> string (since msgids have to be ASCII).
v2: en_US returns! Found some more corrections too. There'll probably be more but there's just so many...
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/8570#note_109902
Fix tab completion for commands like:
```
cd "[2025] Tax Documents"
```
while still allowing tab completion for commands like:
```
copy file1+file2 file3
```
to work.
Without this change, tab completion for cd "[2025] Tax Documents" yields cd "[2025][2025] Tax Documents". Completed text is inserted into the incorrect location due to the closing ']' which was erroneously interpreted as a delimiter before this change.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/8573