4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 04:49:25 +08:00
Takashi Yano 746c8116dd Cygwin: console: Allow pasting very long text input.
- Currently, if the text longer than 1024 byte is pasted in console,
  some of the text is discarded. This patch fixes the issue.
Addresses: https://cygwin.com/pipermail/cygwin/2022-June/251764.html
2022-07-02 11:24:11 +09:00

29 lines
1.1 KiB
Groff

Bug Fixes
---------
- Fix an issue that command "cmd /c script -c cmd" crashes if it
is issued in console of Windows 7.
- Fix killpg failing because the exec'ing as well as the exec'ed
process are not in the pidlist for a brief moment.
Addresses: https://cygwin.com/pipermail/cygwin/2022-May/251479.html
- Fix mknod (64-bit only), whose definition didn't match its prototype.
Addresses: https://cygwin.com/pipermail/cygwin-developers/2022-May/012589.html
- Fix a regression that prevented Cygwin from starting if cygwin1.dll
is in the root directory.
Addresses: https://cygwin.com/pipermail/cygwin/2022-May/251548.html
- Handle setting very long window title correctly in console.
Addresses: https://cygwin.com/pipermail/cygwin/2022-June/251662.html
- Fix a bug of poll() that it returns event which is not inquired
if events are inquired in multiple pollfd entries on the same fd
at the same time.
Addresses: https://cygwin.com/pipermail/cygwin/2022-June/251732.html
- Fix a console problem that the text longer than 1024 bytes cannot
be pasted correctly.
Addresses: https://cygwin.com/pipermail/cygwin/2022-June/251764.html