mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 04:13:32 +02:00
toupper(), tolower(), isspace(), is..etc..() aren't safe with chars in some
systems, use our own is_...() functions now instead. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2348 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
820c9d3d82
commit
f4897860b5
35 changed files with 112 additions and 95 deletions
|
|
@ -265,7 +265,7 @@ static int expand_key(const char *key, GSList **out)
|
|||
start = NULL; last_hyphen = TRUE;
|
||||
for (; *key != '\0'; key++) {
|
||||
if (start != NULL) {
|
||||
if (isalnum(*key) || *key == '_') {
|
||||
if (i_isalnum(*key) || *key == '_') {
|
||||
/* key combo continues */
|
||||
continue;
|
||||
}
|
||||
|
|
@ -291,7 +291,7 @@ static int expand_key(const char *key, GSList **out)
|
|||
expand_out_char(*out, *key);
|
||||
expand_out_char(*out, '-');
|
||||
last_hyphen = FALSE; /* optional */
|
||||
} else if (last_hyphen && isalnum(*key) && !isdigit(*key)) {
|
||||
} else if (last_hyphen && i_isalnum(*key) && !i_isdigit(*key)) {
|
||||
/* possibly beginning of keycombo */
|
||||
start = key;
|
||||
last_hyphen = FALSE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue