- Timestamp:
- 2008-04-02T13:28:23Z (17 years ago)
- Branches:
- master
- Children:
- 6ff51ff, 85d7b85
- Parents:
- 0db75ad (diff), fa75134 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
set.c
r0db75ad rdd34575 230 230 return value; 231 231 } 232 233 char *set_eval_charset( set_t *set, char *value )234 {235 GIConv cd;236 237 if ( g_strncasecmp( value, "none", 4 ) == 0 )238 return value;239 240 cd = g_iconv_open( "UTF-8", value );241 if( cd == (GIConv) -1 )242 return NULL;243 244 g_iconv_close( cd );245 return value;246 }
Note: See TracChangeset
for help on using the changeset viewer.