diff options
| author | stanley lieber <stanley.lieber@gmail.com> | 2011-09-24 20:35:50 -0500 |
|---|---|---|
| committer | stanley lieber <stanley.lieber@gmail.com> | 2011-09-24 20:35:50 -0500 |
| commit | 90925b8588f6605ea1d26ad3c4b9fe20fa8cbf1a (patch) | |
| tree | fbd4324d62def927019c6746eef38bbb82bf50c6 | |
| parent | 13304b7b967c6172cfaa6b31dd4f92348056ed1a (diff) | |
| download | plan9front-90925b8588f6605ea1d26ad3c4b9fe20fa8cbf1a.tar.xz | |
mothra: correct spelling
| -rw-r--r-- | sys/src/cmd/mothra/mothra.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/src/cmd/mothra/mothra.c b/sys/src/cmd/mothra/mothra.c index fc9c7c40f..93a27da7d 100644 --- a/sys/src/cmd/mothra/mothra.c +++ b/sys/src/cmd/mothra/mothra.c @@ -525,12 +525,12 @@ void docmd(Panel *p, char *s){ message("Unknown command %s, type h for help", s); break; case 'a': - s=arg(s); - if(*s == '\0' && selection) + s = arg(s); + if(*s=='\0' && selection) hit3(3, 0); break; case 'g': - s=arg(s); + s = arg(s); if(*s=='\0'){ if(selection) geturl(selection->fullname, GET, 0, 1, 0); @@ -544,15 +544,15 @@ void docmd(Panel *p, char *s){ if(*s) doprev(nil, 1, wwwtop-atoi(s)); else - message("Usgae: j index"); + message("Usage: j index"); break; case 'r': s = arg(s); - if(*s == '\0' && selection) + if(*s=='\0' && selection) geturl(selection->fullname, GET, 0, 0, 0); break; case 'W': - s=arg(s); + s = arg(s); if(s=='\0'){ message("Usage: W file"); break; @@ -560,7 +560,7 @@ void docmd(Panel *p, char *s){ screendump(s, 1); break; case 'w': - s=arg(s); + s = arg(s); if(s=='\0'){ message("Usage: w file"); break; @@ -568,7 +568,7 @@ void docmd(Panel *p, char *s){ screendump(s, 0); break; case 's': - s=arg(s); + s = arg(s); if(*s=='\0'){ if(selection){ s=strrchr(selection->fullname, '/'); |
