Commit b75baf17 authored by Jan Kiene's avatar Jan Kiene
Browse files

Merge branch '228-make-the-ism-reader-accept-both-windows-and-linux-style-line-endings' into 'main'

Resolve "Make the ISM reader accept both Windows- and Linux-style line endings"

See merge request !301
parents a0ecf589 686f91ee
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ bool is_number( char *str )
    i = 0;
    while ( str[i] != 0 )
    {
        if ( ( str[i] < '0' || str[i] > '9' ) && str[i] != '.' && str[i] != '-' && str[i] != '\n' )
        if ( ( str[i] < '0' || str[i] > '9' ) && str[i] != '.' && str[i] != '-' && str[i] != '\n' && str[i] != '\r' )
        {
            return false;
        }