Skip to content

Commit 2cb1fd5

Browse files
committedOct 14, 2016
Fix substitution to really check for the right does-code
1 parent 86449c1 commit 2cb1fd5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

‎engine/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2358,7 +2358,7 @@ int gforth_args(int argc, char ** argv, char ** path, char ** imagename)
23582358
case 'x': debug = 1; break;
23592359
case 'D': print_diag(); break;
23602360
case 'v': fputs(PACKAGE_STRING" "ARCH"\n", stderr); return 1;
2361-
case opt_code_block_size: code_area_size = atoi(optarg); break;
2361+
case opt_code_block_size: if((code_area_size = convsize(optarg,sizeof(Char)))==-1L) return 1; break;
23622362
case ss_number: static_super_number = atoi(optarg); break;
23632363
case ss_states: maxstates = max(min(atoi(optarg),MAX_STATE),1); break;
23642364
#ifndef NO_DYNAMIC

‎substitute.fs

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ require string.fs
44

55
wordlist AConstant macros-wordlist
66

7-
: macro: ( addr u -- ) Create here 0 , $! DOES> $@ ;
7+
: macro: ( addr u -- ) Create here 0 , $! DOES> [ here >r ] $@ ; r>
8+
Constant macro-does:
89

910
: replaces ( addr1 len1 addr2 len2 -- )
1011
\G create a macro with name @var{addr2 len2} and content @var{addr1 len1}.
1112
\G if the macro already exists, just change the content.
1213
2dup macros-wordlist search-wordlist
1314
IF
14-
nip nip dup @ dodoes: = IF >body $!
15+
nip nip dup >does-code macro-does: = IF >body $!
1516
ELSE true [: .name ." is a hard-coded macro" cr ;] ?warning 2drop
1617
THEN
1718
ELSE

0 commit comments

Comments
 (0)
Please sign in to comment.