diff options
Diffstat (limited to 'src/user/highway')
-rw-r--r-- | src/user/highway/line.c | 6 | ||||
-rw-r--r-- | src/user/highway/main.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/user/highway/line.c b/src/user/highway/line.c index ca38c9b..40dccfa 100644 --- a/src/user/highway/line.c +++ b/src/user/highway/line.c @@ -1,5 +1,5 @@ +#include <pland/pcrt.h> #include <knob/block.h> -#include <knob/quit.h> #include <knob/task.h> #include <knob/user.h> #include "cmds.h" @@ -68,7 +68,7 @@ void run_line(const char *original_line) { else if (blockequ(line, "vars", space - line)) dump_vars(); else if (blockequ(line, "quit", space - line)) - quit(space + 1); + __pcrt_quit(); else if (blockequ(line, "help", space - line)) tell_user_sz("Highway is a command shell for Portland OS. It includes variables and a couple\n" "of pseudo-commands. Variables are addressed by surrounding with \"$\". The\n" @@ -78,7 +78,7 @@ void run_line(const char *original_line) { " echo STRING print STRING\n" " vars dump variables\n" " quit exit highway\n" - " help show this\n\n"); + " help show this\n"); else if (!try_run_command_blocking(line)) { struct no_null_sn arg = { .data = "_path", diff --git a/src/user/highway/main.c b/src/user/highway/main.c index 1934920..61f736e 100644 --- a/src/user/highway/main.c +++ b/src/user/highway/main.c @@ -9,7 +9,7 @@ void main(const char *arg) { yield_task(); tell_user_sz("Portland Highway\nType \"help\" for help.\n"); while (1) { - tell_user_sz("> "); + tell_user_sz("\n> "); ask_user_line_sz(cmd_buf, 127); run_line(cmd_buf); } |