Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jangernert/FeedReader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrendan Long <self@brendanlong.com>2018-08-25 23:13:42 +0300
committerBrendan Long <self@brendanlong.com>2018-08-25 23:39:36 +0300
commit35eab4b8bd6cb22d29b58319f90efa6c463dccdc (patch)
tree6f72a685daf709ecae73fd7d20dc55c5792b60a8 /libraries
parent958b8af0e78f06da509097a4600f2dfb77227b73 (diff)
libvilistexum: Fix more isalnums to iswalnum
Diffstat (limited to 'libraries')
-rw-r--r--libraries/libVilistextum/html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/libVilistextum/html.c b/libraries/libVilistextum/html.c
index 713a0b0d..cca267d6 100644
--- a/libraries/libVilistextum/html.c
+++ b/libraries/libVilistextum/html.c
@@ -169,7 +169,7 @@ void html(int extractText)
ch = read_char();
str[i++] = ch;
}
- while ((isalnum(ch)) || (ch=='#'));
+ while ((iswalnum(ch)) || (ch=='#'));
/* if last char is no ';', then the string is no valid entity. */
/* maybe it is something like &nbsp or even '& ' */
@@ -244,7 +244,7 @@ void html(int extractText)
ch = read_char();
str[i++] = ch;
}
- while ((isalnum(ch)) || (ch=='#'));
+ while ((iswalnum(ch)) || (ch=='#'));
/* if last char is no ';', then the string is no valid entity. */
/* maybe it is something like &nbsp or even '& ' */