MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix regex...

+2 -1
+1 -1
meson.build
··· 75 75 build_date = run_command('date', '+%Y-%m-%d', check: true).stdout().strip() 76 76 77 77 version_conf = configuration_data() 78 - version_conf.set('ANT_VERSION', '0.2.0.1') 78 + version_conf.set('ANT_VERSION', '0.2.0.2') 79 79 version_conf.set('ANT_GIT_HASH', git_hash) 80 80 version_conf.set('ANT_BUILD_DATE', build_date) 81 81
+1
src/ant.c
··· 3667 3667 default: js->tok = parseident(buf, js->clen - js->toff, &js->tlen); break; 3668 3668 } 3669 3669 3670 + if (js->tlen == 0) js->tlen = 1; 3670 3671 js->pos = js->toff + js->tlen; 3671 3672 return js->tok; 3672 3673 }