Re: [PATCH] Fixes to parse_options, help info from display

2014-08-19 Thread Pekka Paalanen
On Fri, 8 Aug 2014 12:59:49 -0700 Bill Spitzak wrote: > These are a series of changes, you can pick and choose from them if you don't > like them all. > > There are fixes to the parser so that "x=5mm" and "bool=false" and other > constucts are errors > rather than doing unintuitive things. >

Re: [PATCH] Fixes to parse_options, help info from display

2014-08-11 Thread Pekka Paalanen
On Mon, 11 Aug 2014 14:16:53 -0700 Bill Spitzak wrote: > On 08/09/2014 02:00 AM, Pekka Paalanen wrote: > > > Hi, > > > > does this series completely replace your previous 11-patch series > > of the similar kind? > > Yes this replaces it. But I think the only difference is the addition of > the

Re: [PATCH] Fixes to parse_options, help info from display

2014-08-11 Thread Bill Spitzak
On 08/09/2014 02:00 AM, Pekka Paalanen wrote: Hi, does this series completely replace your previous 11-patch series of the similar kind? Yes this replaces it. But I think the only difference is the addition of the last patch for load_image. ___ wa

Re: [PATCH] Fixes to parse_options, help info from display

2014-08-11 Thread Marek Chalupa
Hi, I tested this series of patches, seems working. I haven't reviewed all the code, though. Didn't try weston-nested and weston-screensaver, because I don't have it compiled. The patch 'load_image always prints a message on failure if filename is not empty' adds a whitespace error. Otherwise lo

Re: [PATCH] Fixes to parse_options, help info from display

2014-08-09 Thread Pekka Paalanen
On Fri, 8 Aug 2014 12:59:49 -0700 Bill Spitzak wrote: > These are a series of changes, you can pick and choose from them if you don't > like them all. > > There are fixes to the parser so that "x=5mm" and "bool=false" and other > constucts are errors > rather than doing unintuitive things. >

[PATCH] Fixes to parse_options, help info from display

2014-08-08 Thread Bill Spitzak
These are a series of changes, you can pick and choose from them if you don't like them all. There are fixes to the parser so that "x=5mm" and "bool=false" and other constucts are errors rather than doing unintuitive things. Also I tried to get most of the weston demo programs to print some hel

[PATCH] Fixes to parse_options

2014-06-25 Thread Bill Spitzak
- Rejects malformed or missing numbers - Boolean switches must not have an = sign, others must have = - Single-letter non-boolean can have optional = sign: -x=foo - Single-letter boolean switches can be merged: -xyz - Fixed addressing string[strlen+1] - new parse_options_or_exit() prints help infor