Make stricter match for option's names consisting of a prefix and a number.
authorLaurent Monin <geeqie@norz.org>
Wed, 21 May 2008 19:37:18 +0000 (19:37 +0000)
committerLaurent Monin <geeqie@norz.org>
Wed, 21 May 2008 19:37:18 +0000 (19:37 +0000)
commitcceaf6dd59921919c0f8c1478bc025de7812ba9f
treeb5fb73b38abc7e3c25b46393df350d0b41467cb8
parentf4fdeefe1b2f4573b91a19682a134a50f675c8ff
Make stricter match for option's names consisting of a prefix and a number.
It allows to have names like "prefix_12" and "prefix_something" in the same file.
Using strtol() was wrong since it allowed names like "prefix_-0xa", leading
to unpredictable results. It was wrong too with "prefix_something", which
was equivalent to "prefix_0", instead of being an option of its own.
src/rcfile.c