File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ options: object [ ; Options supplied to REBOL during startup
149
149
150
150
binary-base: 16 ; Default base for FORMed binary values (64, 16, 2)
151
151
decimal-digits: 15 ; Max number of decimal digits to print.
152
- probe-limit: 16000 ; Max probed output size, 0 means no limit
152
+ probe-limit: 16000 ; Max probed output size
153
153
module-paths: [%./ ]
154
154
default-suffix: %.reb ; Used by IMPORT if no suffix is provided
155
155
file-types: []
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ static REBSER *Read_All_File(char *fname)
139
139
if (VAL_INT64 (D_ARG (6 )) > (i64 )MAX_I32 )
140
140
len = MAX_I32 ;
141
141
else if (VAL_INT64 (D_ARG (6 )) <= 0 )
142
- len = NO_LIMIT ;
142
+ len = 0 ;
143
143
else
144
144
len = VAL_INT32 (D_ARG (6 ));
145
145
}
You can’t perform that action at this time.
0 commit comments