Re: pledge fish(6) plus a few more things

2015-11-30 Thread Jan Stary
On Nov 30 14:36:37, theo.bueh...@math.ethz.ch wrote: > On Mon, Nov 30, 2015 at 02:26:38PM +0100, Jan Stary wrote: > > On Nov 30 14:16:02, h...@stare.cz wrote: > > > On Nov 23 13:17:43, ser...@helheim.mooo.com wrote: > > > > Declared usage() as __dead since it won't return, instructions() called > >

Re: pledge fish(6) plus a few more things

2015-11-30 Thread Theo Buehler
On Mon, Nov 30, 2015 at 02:26:38PM +0100, Jan Stary wrote: > On Nov 30 14:16:02, h...@stare.cz wrote: > > On Nov 23 13:17:43, ser...@helheim.mooo.com wrote: > > > Declared usage() as __dead since it won't return, instructions() called > > > a handrolled pager (/bin/cat) using fork which I replaced

Re: pledge fish(6) plus a few more things

2015-11-30 Thread Jan Stary
On Nov 30 14:16:02, h...@stare.cz wrote: > On Nov 23 13:17:43, ser...@helheim.mooo.com wrote: > > Declared usage() as __dead since it won't return, instructions() called > > a handrolled pager (/bin/cat) using fork which I replaced for a simple > > cicle of while(fgets) then fputs (greatly inspired

Re: pledge fish(6) plus a few more things

2015-11-30 Thread Jan Stary
On Nov 30 14:16:02, h...@stare.cz wrote: > On Nov 23 13:17:43, ser...@helheim.mooo.com wrote: > > Declared usage() as __dead since it won't return, instructions() called > > a handrolled pager (/bin/cat) using fork which I replaced for a simple > > cicle of while(fgets) then fputs (greatly inspired

Re: pledge fish(6) plus a few more things

2015-11-30 Thread Jan Stary
On Nov 23 13:17:43, ser...@helheim.mooo.com wrote: > Declared usage() as __dead since it won't return, instructions() called > a handrolled pager (/bin/cat) using fork which I replaced for a simple > cicle of while(fgets) then fputs (greatly inspired, to not saying it was > bluntly copied, by a pre

Re: pledge fish(6) plus a few more things

2015-11-23 Thread Ricardo Mestre
This one was also wrapped: Index: fish.c === RCS file: /cvs/src/games/fish/fish.c,v retrieving revision 1.17 diff -u -p -u -r1.17 fish.c --- fish.c 18 Feb 2015 23:20:45 - 1.17 +++ fish.c 23 Nov 2015 19:16:15 - @

Re: pledge fish(6) plus a few more things

2015-11-23 Thread Ted Unangst
Ricardo Mestre wrote: > Prodded by theo@ and others offline, the removal of the pager may cause > some terms to not display the entire text of the instructions for fish(6). > > After some rewording, removal of blank lines and start the paragraphs > with 2 spaces the text fits at least in a 80x24 s

Re: pledge fish(6) plus a few more things

2015-11-23 Thread Ricardo Mestre
Prodded by theo@ and others offline, the removal of the pager may cause some terms to not display the entire text of the instructions for fish(6). After some rewording, removal of blank lines and start the paragraphs with 2 spaces the text fits at least in a 80x24 screen (sorry, couldn't make the

Re: pledge fish(6) plus a few more things

2015-11-23 Thread Ricardo Mestre
Sorry, I forgot that it could also run more instead of cat in the pager, so remove declaration from pathnames.h Index: fish.c === RCS file: /cvs/src/games/fish/fish.c,v retrieving revision 1.17 diff -u -p -u -r1.17 fish.c --- fish.c

pledge fish(6) plus a few more things

2015-11-23 Thread Ricardo Mestre
Hi, Declared usage() as __dead since it won't return, instructions() called a handrolled pager (/bin/cat) using fork which I replaced for a simple cicle of while(fgets) then fputs (greatly inspired, to not saying it was bluntly copied, by a previous patch sent by tedu@ for another application). A