summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authormongo <andmarti@gmail.com>2018-03-21 09:44:55 -0300
committermongo <andmarti@gmail.com>2018-03-21 09:44:55 -0300
commit6f5029eae048dadbb3bb6389de8393b0f4ac6b68 (patch)
treecf5f31ee1945f8428311e4f198b0215fa39fc9ea /src
parente9aaebe6658a0f86f84db8c60a8a6eddecc8d0e1 (diff)
revert last commit because made cellcolor fail
Diffstat (limited to 'src')
-rwxr-xr-xsrc/utils/dictionary.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/dictionary.c b/src/utils/dictionary.c
index 3192b55..af3305d 100755
--- a/src/utils/dictionary.c
+++ b/src/utils/dictionary.c
@@ -278,8 +278,8 @@ void parse_str(struct dictionary * d, char * str) {
}
if (c == '\0') break;
c = *++str;
- //while (c != ' ' && c != '\0') {
- while (c != '\0') {
+ while (c != ' ' && c != '\0') {
+ //while (c != '\0') {
add_char(value, c, strlen(value));
c = *++str;
}