Re: Texinfo Windows patch: Avoid duplicate Info directories

2014-12-26 Thread Eli Zaretskii
> Date: Thu, 25 Dec 2014 20:23:01 +0200 > From: Eli Zaretskii > Cc: jad...@yahoo.com.au, bug-texinfo@gnu.org > > > Please go ahead and commit any of the changes you've posted for > > Windows > > OK, will do. Done.

Re: Texinfo Windows patch: Non-ASCII text output

2014-12-26 Thread Eli Zaretskii
> Date: Fri, 26 Dec 2014 19:13:24 +1000 > From: Jason Hood > CC: bug-texinfo@gnu.org > > On 26/12/2014 18:37, Eli Zaretskii wrote: > > The speed is fine on my machines, and cputs does NOT write one > > character at a time, it uses WriteConsole. Only cprintf writes one > > character at a time. >

Re: Texinfo Windows patch: Non-ASCII text output

2014-12-26 Thread Jason Hood
On 26/12/2014 18:37, Eli Zaretskii wrote: > The speed is fine on my machines, and cputs does NOT write one > character at a time, it uses WriteConsole. Only cprintf writes one > character at a time. Not according to the Visual Studio 2010 source, which is presumably similar to what MSVCRT.DLL wou

Re: [Bulk] Re: Texinfo Windows patch: Non-ASCII text output

2014-12-26 Thread Eli Zaretskii
> Date: Fri, 26 Dec 2014 11:44:26 +1000 > From: Jason Hood > CC: bug-texinfo@gnu.org > > On 26/12/2014 2:00, Eli Zaretskii wrote: > > [...] when the output encoding, > > as determined by the current console codepage, is UTF-8 or UTF-7. For > > these 2 encodings, the _only_ way of delivering text

Re: [Bulk] Re: Texinfo Windows patch: Non-ASCII text output

2014-12-25 Thread Jason Hood
On 26/12/2014 2:00, Eli Zaretskii wrote: > [...] when the output encoding, > as determined by the current console codepage, is UTF-8 or UTF-7. For > these 2 encodings, the _only_ way of delivering text to the Windows > console is by using the "wide" APIs, which accept UTF-16 encoded text. Actuall

Re: Texinfo Windows patch: Avoid duplicate Info directories

2014-12-25 Thread Eli Zaretskii
> Date: Thu, 25 Dec 2014 18:11:21 + > From: Gavin Smith > Cc: Jason Hood , Texinfo > > On Thu, Dec 25, 2014 at 3:55 PM, Eli Zaretskii wrote: > >> Date: Fri, 07 Nov 2014 17:55:36 +1000 > >> From: Jason Hood > >> > >> * enhances the gnulib stat replacement to provide meaningful values for >

Re: Texinfo Windows patch: Avoid duplicate Info directories

2014-12-25 Thread Gavin Smith
On Thu, Dec 25, 2014 at 3:55 PM, Eli Zaretskii wrote: >> Date: Fri, 07 Nov 2014 17:55:36 +1000 >> From: Jason Hood >> >> * enhances the gnulib stat replacement to provide meaningful values for >> st_ino & st_dev, thus enabling detection of duplicate directories; > > This was reported by Jason t

Re: Texinfo Windows patch: Non-ASCII text output

2014-12-25 Thread Eli Zaretskii
> Date: Fri, 07 Nov 2014 17:55:36 +1000 > From: Jason Hood > > * improves screen output (faster, correctly displays both UTF-8 and > latin1 files). This part of the patch was the most complex to deal with. Its main part deals with displaying non-ASCII characters on the Windows console. The o

Re: Texinfo Windows patch: Fix the visual bell on MS-Windows

2014-12-25 Thread Eli Zaretskii
> Date: Fri, 07 Nov 2014 17:55:36 +1000 > From: Jason Hood > > * improves the visual bell; This patch, which I reproduce below rebased to the current trunk, corrects a real bug with the visual bell implementation in the current code, and I recommend to commit it: --- info/pcterm.c~0 2014-12

Re: Texinfo Windows patch: Avoid duplicate Info directories

2014-12-25 Thread Eli Zaretskii
> Date: Fri, 07 Nov 2014 17:55:36 +1000 > From: Jason Hood > > * enhances the gnulib stat replacement to provide meaningful values for > st_ino & st_dev, thus enabling detection of duplicate directories; This was reported by Jason to Gnulib, but I see no responses to that message (http://lists

Re: Texinfo Windows patch

2014-12-25 Thread Eli Zaretskii
> Date: Fri, 07 Nov 2014 17:55:36 +1000 > From: Jason Hood > > Find attached a patch (based on the 5.2 release; apply with -p1) to > address some issues with the Windows port: > > * enhances the gnulib stat replacement to provide meaningful values for > st_ino & st_dev, thus enabling detection

Re: [Bulk] Re: Texinfo Windows patch

2014-11-08 Thread Jason Hood
On 7/11/2014 23:25, Eli Zaretskii wrote: > Patches for Gnulib functions should be sent to the Gnulib mailing > list, bug-gnu...@gnu.org. In that case, I'll send the additional patches of my grep port. > Btw, is this change really worth the hassle? Yes, since when I used your Windows port with m

Re: Texinfo Windows patch

2014-11-07 Thread Eli Zaretskii
> Date: Fri, 07 Nov 2014 17:55:36 +1000 > From: Jason Hood > > Find attached a patch (based on the 5.2 release; apply with -p1) to > address some issues with the Windows port: Thanks. > * enhances the gnulib stat replacement to provide meaningful values for > st_ino & st_dev, thus enabling de

Texinfo Windows patch

2014-11-07 Thread Jason Hood
Greetings. Find attached a patch (based on the 5.2 release; apply with -p1) to address some issues with the Windows port: * enhances the gnulib stat replacement to provide meaningful values for st_ino & st_dev, thus enabling detection of duplicate directories; * improves the visual bell; * im