Re: [PATCH v2 0/3] Three pty fixes regarding pseudo console.

2020-11-23 Thread Corinna Vinschen
On Nov 23 20:03, Takashi Yano via Cygwin-patches wrote: > Takashi Yano (3): > Cygwin: pty: Fix a bug in the code removing "CSI > Pm m". > Cygwin: pty: Discard "OSC Ps;? BEL/ST" in pseudo console output. > Cygwin: pty: Fix minor style issue. > > winsup/cygwin/fhandler_tty.cc | 33

Re: [PATCH] Use automake (v2)

2020-11-23 Thread Corinna Vinschen
Hi Jon, Do I have to run autogen.sh for testing? Corinna On Nov 20 15:59, Jon Turney wrote: > v2: > * Include tzmap.h in BUILT_SOURCES > * Make per-file flags appear after user-supplied CXXFLAGS, so they can > override optimization level. > * Correct .o files used to define symbols exported

[PATCH 0/2] winsup/doc/: add proc(5) man page

2020-11-23 Thread Brian Inglis
Hacked a Cygwin proc.5 man page, by combing through fhandler_proc..., converted to proc-5.xml using doclifter, included after pathnames-proc before pathnames-proc-registry sections in specialnames.xml, and modified to match and create a refentry to generate proc(5) man page. One of the issues

[PATCH 2/2] winsup/doc/Makefile.in: create man5 dir and install proc.5

2020-11-23 Thread Brian Inglis
--- winsup/doc/Makefile.in | 4 1 file changed, 4 insertions(+) diff --git a/winsup/doc/Makefile.in b/winsup/doc/Makefile.in index cc4a1bec305b..f2a838a5dcf7 100644 --- a/winsup/doc/Makefile.in +++ b/winsup/doc/Makefile.in @@ -17,6 +17,7 @@ htmldir = @htmldir@ mandir = @mandir@ man1dir =

[PATCH 1/2] specialnames.xml: add proc(5) Cygwin man page

2020-11-23 Thread Brian Inglis
--- winsup/doc/specialnames.xml | 2100 +++ 1 file changed, 2100 insertions(+) diff --git a/winsup/doc/specialnames.xml b/winsup/doc/specialnames.xml index a1f7401e16b9..6b86187f39e9 100644 --- a/winsup/doc/specialnames.xml +++ b/winsup/doc/specialnames.xml @@

Re: [PATCH 0/3] Further build cleanups

2020-11-23 Thread Corinna Vinschen
On Nov 20 14:08, Jon Turney wrote: > Jon Turney (3): > Drop libgmon.a build dependency on gcrt0.o > Use standard CXXFLAGS when compiling localtime_wrapper.c > Have cygmagic not create output if an error occurs > > winsup/cygwin/Makefile.in | 4 ++-- > winsup/cygwin/cygmagic| 17

Re: [PATCH 2/2] Cygwin: pty: Discard "OSC Ps; ? BEL/ST" in pseudo console output.

2020-11-23 Thread Corinna Vinschen
Hi Takashi, just a small style nit: On Nov 23 14:28, Takashi Yano via Cygwin-patches wrote: > - If vim is executed in WSL in mintty, some garbage string caused > by "OSC Ps;? BEL/ST" will be shown in some situations. This patch > fixes the issue by removing "OSC Ps;? BEL/ST" from pseudo

Re: proc(5) and xml version

2020-11-23 Thread Corinna Vinschen
On Nov 20 09:42, Brian Inglis wrote: > On 2020-11-16 16:21, Brian Inglis wrote: > > On 2020-11-16 06:41, Jon Turney wrote: > > > On 16/11/2020 12:07, Corinna Vinschen wrote: > > > > Hi Brain, > > > > > > > > On Nov 13 07:25, Brian Inglis wrote: > > > > > Hacked a Cygwin proc.5 man page FMOI over

Re: [PATCH 2/2] Cygwin: pty: Discard "OSC Ps; ? BEL/ST" in pseudo console output.

2020-11-23 Thread Takashi Yano via Cygwin-patches
On Mon, 23 Nov 2020 09:58:59 +0100 Corinna Vinschen wrote: > Hi Takashi, > > just a small style nit: > > On Nov 23 14:28, Takashi Yano via Cygwin-patches wrote: > > - If vim is executed in WSL in mintty, some garbage string caused > > by "OSC Ps;? BEL/ST" will be shown in some situations.

[PATCH v2 2/3] Cygwin: pty: Discard "OSC Ps; ? BEL/ST" in pseudo console output.

2020-11-23 Thread Takashi Yano via Cygwin-patches
- If vim is executed in WSL in mintty, some garbage string caused by "OSC Ps;? BEL/ST" will be shown in some situations. This patch fixes the issue by removing "OSC Ps;? BEL/ST" from pseudo console output. --- winsup/cygwin/fhandler_tty.cc | 30 ++ 1 file

[PATCH v2 3/3] Cygwin: pty: Fix minor style issue.

2020-11-23 Thread Takashi Yano via Cygwin-patches
--- winsup/cygwin/fhandler_tty.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index 3d58cc7df..422d7349d 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -2043,7 +2043,7 @@

[PATCH v2 1/3] Cygwin: pty: Fix a bug in the code removing "CSI > Pm m".

2020-11-23 Thread Takashi Yano via Cygwin-patches
- The code added by 8121b606e843c001d5ca5213d24099e04ebc62ca has a bug which fails to remove multiple "CSI > Pm m" sequences. This patch fixes the bug. --- winsup/cygwin/fhandler_tty.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/winsup/cygwin/fhandler_tty.cc

[PATCH v2 0/3] Three pty fixes regarding pseudo console.

2020-11-23 Thread Takashi Yano via Cygwin-patches
Takashi Yano (3): Cygwin: pty: Fix a bug in the code removing "CSI > Pm m". Cygwin: pty: Discard "OSC Ps;? BEL/ST" in pseudo console output. Cygwin: pty: Fix minor style issue. winsup/cygwin/fhandler_tty.cc | 33 - 1 file changed, 32 insertions(+), 1