Re: [Geany-Devel] small bug in utils_strtod()

2013-12-04 Thread Steven Blatnick
That looks like "pee yellow" to me... On 12/04/2013 01:38 PM, Lex Trotman wrote: On 5 December 2013 07:26, Tory Gaurnier > wrote: No offense, but a paint store isn't a very good comparison, because they have 100s of "named" colors, and you can get

Re: [Geany-Devel] small bug in utils_strtod()

2013-12-04 Thread Lex Trotman
On 5 December 2013 07:26, Tory Gaurnier wrote: > No offense, but a paint store isn't a very good comparison, because they > have 100s of "named" colors, and you can get 1000s of mixes that then have > their own names, when it comes to computer science we use RGB, we can't > crack open a can of gr

Re: [Geany-Devel] small bug in utils_strtod()

2013-12-04 Thread Tory Gaurnier
No offense, but a paint store isn't a very good comparison, because they have 100s of "named" colors, and you can get 1000s of mixes that then have their own names, when it comes to computer science we use RGB, we can't crack open a can of green and mix it with egg shells white, we use HEX or DE

Re: [Geany-Devel] small bug in utils_strtod()

2013-12-04 Thread Colomban Wendling
Le 04/12/2013 03:31, Matthew Brush a écrit : > On 13-12-02 06:16 PM, Colomban Wendling wrote: >> Le 02/12/2013 21:54, Colomban Wendling a écrit : >>> [...] >> >> Committed a different version that keeps our own parser, because as Lex >> pointed out on IRC the named colors are weird, and as I mentio

Re: [Geany-Devel] small bug in utils_strtod()

2013-12-03 Thread Matthew Brush
On 13-12-02 06:16 PM, Colomban Wendling wrote: Le 02/12/2013 21:54, Colomban Wendling a écrit : Le 02/12/2013 21:54, Colomban Wendling a écrit : Le 01/12/2013 23:45, Matthew Brush a écrit : On 13-12-01 01:26 PM, Lex Trotman wrote: Hi, **gint** utils_strtod()?? Sheesh. s/b renamed utils_hex

Re: [Geany-Devel] small bug in utils_strtod()

2013-12-02 Thread Colomban Wendling
Le 02/12/2013 21:54, Colomban Wendling a écrit : > Le 02/12/2013 21:54, Colomban Wendling a écrit : >> Le 01/12/2013 23:45, Matthew Brush a écrit : >>> On 13-12-01 01:26 PM, Lex Trotman wrote: Hi, **gint** utils_strtod()?? Sheesh. s/b renamed utils_hexcolor() or similar, t

Re: [Geany-Devel] small bug in utils_strtod()

2013-12-02 Thread Colomban Wendling
Le 02/12/2013 21:54, Colomban Wendling a écrit : > Le 01/12/2013 23:45, Matthew Brush a écrit : >> On 13-12-01 01:26 PM, Lex Trotman wrote: >>> Hi, >>> >>> **gint** utils_strtod()?? Sheesh. >>> >>> s/b renamed utils_hexcolor() or similar, thats what it does. >>> >>> As for "end", the original strt

Re: [Geany-Devel] small bug in utils_strtod()

2013-12-02 Thread Colomban Wendling
Le 01/12/2013 23:45, Matthew Brush a écrit : > On 13-12-01 01:26 PM, Lex Trotman wrote: >> Hi, >> >> **gint** utils_strtod()?? Sheesh. >> >> s/b renamed utils_hexcolor() or similar, thats what it does. >> >> As for "end", the original strtod() and friends used it to extract >> several >> whitespac

Re: [Geany-Devel] small bug in utils_strtod()

2013-12-01 Thread Matthew Brush
On 13-12-01 04:34 PM, Lex Trotman wrote: On 2 December 2013 09:45, Matthew Brush wrote: On 13-12-01 01:26 PM, Lex Trotman wrote: Hi, **gint** utils_strtod()?? Sheesh. s/b renamed utils_hexcolor() or similar, thats what it does. As for "end", the original strtod() and friends used it to e

Re: [Geany-Devel] small bug in utils_strtod()

2013-12-01 Thread Lex Trotman
On 2 December 2013 09:45, Matthew Brush wrote: > On 13-12-01 01:26 PM, Lex Trotman wrote: > >> Hi, >> >> **gint** utils_strtod()?? Sheesh. >> >> s/b renamed utils_hexcolor() or similar, thats what it does. >> >> As for "end", the original strtod() and friends used it to extract several >> whites

Re: [Geany-Devel] small bug in utils_strtod()

2013-12-01 Thread Matthew Brush
On 13-12-01 01:26 PM, Lex Trotman wrote: Hi, **gint** utils_strtod()?? Sheesh. s/b renamed utils_hexcolor() or similar, thats what it does. As for "end", the original strtod() and friends used it to extract several whitespace separated strings from the one string by just passing "end" to the

Re: [Geany-Devel] small bug in utils_strtod()

2013-12-01 Thread Lex Trotman
Hi, **gint** utils_strtod()?? Sheesh. s/b renamed utils_hexcolor() or similar, thats what it does. As for "end", the original strtod() and friends used it to extract several whitespace separated strings from the one string by just passing "end" to the next call, but if we don't use it and its w

[Geany-Devel] small bug in utils_strtod()

2013-12-01 Thread Dimitar Zhekov
Hi, utils_strtod() has an **end output argument, like strtod(), but never uses it. Of course, all callers pass NULL, so it doesn't matter much, but it'll still be good to fix it. Do you thing we shall handle the argument, or remove it? Assignind to *end doesn't make much sense, since on successfu