| 396 | } |
| 397 | |
| 398 | void run() |
| 399 | { |
| 400 | pushscontext(IEXC_PROMPT); |
| 401 | if(action) |
| 402 | { |
| 403 | push("cmdbuf", buf); |
| 404 | execute(action); |
| 405 | pop("cmdbuf"); |
| 406 | } |
| 407 | else if(buf[0]=='/') execute(buf+1); |
| 408 | else toserver(buf); |
| 409 | popscontext(); |
| 410 | } |
| 411 | }; |
| 412 | vector<hline *> history; |
| 413 | int histpos = 0; |
no test coverage detected