Version 2.1.7, which is a pile of little tweaks and additional functionality

This commit is contained in:
david parsons
2013-10-08 22:26:43 -07:00
parent 81ed24aae0
commit 49abed29e7
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
2.1.6
2.1.7
+4
View File
@@ -73,6 +73,10 @@ isthisspace(MMIOT *f, int i)
{
int c = peek(f, i);
if ( c == EOF )
return 1;
if ( c & 0x80 )
return 0;
return isspace(c) || (c < ' ');
}