File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change
1
+ started 8.9.2 22/11/23
2
+ - fix a lockup with comment characters in REPL [MvGulik]
3
+
1
4
started 8.9.1 15/2/23
2
5
- fix build with --std=c99 [Schamschula]
3
6
Original file line number Diff line number Diff line change 1
1
# Process this file with autoconf to produce a configure script.
2
2
3
- AC_INIT ( [ nip2] ,
[ 8.9.1 ] ,
[ [email protected] ] )
3
+ AC_INIT ( [ nip2] ,
[ 8.9.2 ] ,
[ [email protected] ] )
4
4
5
5
# foreign stops complaints about a missing README (we use README.md instead)
6
6
# and missing INSTALL (the standard Gnu INSTALL is not very useful)
17
17
18
18
m4_define ( [ nip_major_version] , [ 8] )
19
19
m4_define ( [ nip_minor_version] , [ 9] )
20
- m4_define ( [ nip_micro_version] , [ 1 ] )
20
+ m4_define ( [ nip_micro_version] , [ 2 ] )
21
21
m4_define ( [ nip_version] ,
22
22
[ nip_major_version.nip_minor_version.nip_micro_version] )
23
23
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ read_char( void )
180
180
181
181
/* Read string up to \n, EOF.
182
182
*/
183
- while ( (ch = input ()) != EOF && ch != ' \n ' )
183
+ while ( (ch = input ()) != EOF && ch != ' \n ' && ch != ' \0 ' )
184
184
;
185
185
}
186
186
You can’t perform that action at this time.
0 commit comments