Mercurial > geeqie
changeset 353:691fcf15aca1
Fix a typo, READ_CHAR() must use value_all.
author | zas_ |
---|---|
date | Sun, 13 Apr 2008 12:12:44 +0000 |
parents | 7e7c9fa8fdeb |
children | 5c82855feba7 |
files | src/rcfile.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/rcfile.c Sun Apr 13 09:10:38 2008 +0000 +++ b/src/rcfile.c Sun Apr 13 12:12:44 2008 +0000 @@ -564,7 +564,7 @@ #define READ_UINT(_name_) read_uint_option(f, option, #_name_, value, &options->_name_) #define READ_INT_CLAMP(_name_, _min_, _max_) read_int_option_clamp(f, option, #_name_, value, &options->_name_, _min_, _max_) #define READ_INT_UNIT(_name_, _unit_) read_int_unit_option(f, option, #_name_, value, &options->_name_, _unit_) -#define READ_CHAR(_name_) read_char_option(f, option, #_name_, value, &options->_name_) +#define READ_CHAR(_name_) read_char_option(f, option, #_name_, value_all, &options->_name_) #define READ_COLOR(_name_) read_color_option(f, option, #_name_, value, &options->_name_) /* general options */