compiles
This commit is contained in:
parent
d29226268d
commit
0e98e380f0
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
*.o
|
*.o
|
||||||
|
dc
|
||||||
|
2
dc.c
2
dc.c
@ -189,8 +189,10 @@ dcevaln(ns_t * s, char * eval, size_t len)
|
|||||||
case ':': REGCHAR(); REGCLAMP(); ns_reg_push_index(s, c); break;
|
case ':': REGCHAR(); REGCLAMP(); ns_reg_push_index(s, c); break;
|
||||||
case ';': REGCHAR(); REGCLAMP(); ns_reg_pop_index(s, c); break;
|
case ';': REGCHAR(); REGCLAMP(); ns_reg_pop_index(s, c); break;
|
||||||
case '!': i += command(eval + i + 1); break;
|
case '!': i += command(eval + i + 1); break;
|
||||||
|
#if 0
|
||||||
case '?': /* take user input, and execute that
|
case '?': /* take user input, and execute that
|
||||||
as a slave to current level */ break;
|
as a slave to current level */ break;
|
||||||
|
#endif /* 0 */
|
||||||
/* New non-conflicting features not present in DC */
|
/* New non-conflicting features not present in DC */
|
||||||
case '@': ns_abs(s); break;
|
case '@': ns_abs(s); break;
|
||||||
case '"': ns_ceil(s); break;
|
case '"': ns_ceil(s); break;
|
||||||
|
Reference in New Issue
Block a user