Fossil SCM
isspace() -> fossil_isspace()
Commit
1d9e0897e3c1f34658ebcae32717cf0318b9d19810ad65ac5e35d1ec904b5e88
Parent
ea4010d58ac64ea…
1 file changed
+1
-1
+1
-1
| --- src/fshell.c | ||
| +++ src/fshell.c | ||
| @@ -89,11 +89,11 @@ | ||
| 89 | 89 | i++; |
| 90 | 90 | azArg[nArg++] = &zLine[i]; |
| 91 | 91 | for(i++; i<n && zLine[i]!=cQuote; i++){} |
| 92 | 92 | }else{ |
| 93 | 93 | azArg[nArg++] = &zLine[i]; |
| 94 | - while( i<n && !isspace(zLine[i]) ){ i++; } | |
| 94 | + while( i<n && !fossil_isspace(zLine[i]) ){ i++; } | |
| 95 | 95 | } |
| 96 | 96 | zLine[i] = 0; |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | /* If the --debug flag was used, display the parsed arguments */ |
| 100 | 100 |
| --- src/fshell.c | |
| +++ src/fshell.c | |
| @@ -89,11 +89,11 @@ | |
| 89 | i++; |
| 90 | azArg[nArg++] = &zLine[i]; |
| 91 | for(i++; i<n && zLine[i]!=cQuote; i++){} |
| 92 | }else{ |
| 93 | azArg[nArg++] = &zLine[i]; |
| 94 | while( i<n && !isspace(zLine[i]) ){ i++; } |
| 95 | } |
| 96 | zLine[i] = 0; |
| 97 | } |
| 98 | |
| 99 | /* If the --debug flag was used, display the parsed arguments */ |
| 100 |
| --- src/fshell.c | |
| +++ src/fshell.c | |
| @@ -89,11 +89,11 @@ | |
| 89 | i++; |
| 90 | azArg[nArg++] = &zLine[i]; |
| 91 | for(i++; i<n && zLine[i]!=cQuote; i++){} |
| 92 | }else{ |
| 93 | azArg[nArg++] = &zLine[i]; |
| 94 | while( i<n && !fossil_isspace(zLine[i]) ){ i++; } |
| 95 | } |
| 96 | zLine[i] = 0; |
| 97 | } |
| 98 | |
| 99 | /* If the --debug flag was used, display the parsed arguments */ |
| 100 |