mothra: correct spelling

This commit is contained in:
stanley lieber 2011-09-24 20:35:50 -05:00
parent 13304b7b96
commit 90925b8588

View file

@ -525,12 +525,12 @@ void docmd(Panel *p, char *s){
message("Unknown command %s, type h for help", s); message("Unknown command %s, type h for help", s);
break; break;
case 'a': case 'a':
s=arg(s); s = arg(s);
if(*s == '\0' && selection) if(*s=='\0' && selection)
hit3(3, 0); hit3(3, 0);
break; break;
case 'g': case 'g':
s=arg(s); s = arg(s);
if(*s=='\0'){ if(*s=='\0'){
if(selection) if(selection)
geturl(selection->fullname, GET, 0, 1, 0); geturl(selection->fullname, GET, 0, 1, 0);
@ -544,15 +544,15 @@ void docmd(Panel *p, char *s){
if(*s) if(*s)
doprev(nil, 1, wwwtop-atoi(s)); doprev(nil, 1, wwwtop-atoi(s));
else else
message("Usgae: j index"); message("Usage: j index");
break; break;
case 'r': case 'r':
s = arg(s); s = arg(s);
if(*s == '\0' && selection) if(*s=='\0' && selection)
geturl(selection->fullname, GET, 0, 0, 0); geturl(selection->fullname, GET, 0, 0, 0);
break; break;
case 'W': case 'W':
s=arg(s); s = arg(s);
if(s=='\0'){ if(s=='\0'){
message("Usage: W file"); message("Usage: W file");
break; break;
@ -560,7 +560,7 @@ void docmd(Panel *p, char *s){
screendump(s, 1); screendump(s, 1);
break; break;
case 'w': case 'w':
s=arg(s); s = arg(s);
if(s=='\0'){ if(s=='\0'){
message("Usage: w file"); message("Usage: w file");
break; break;
@ -568,7 +568,7 @@ void docmd(Panel *p, char *s){
screendump(s, 0); screendump(s, 0);
break; break;
case 's': case 's':
s=arg(s); s = arg(s);
if(*s=='\0'){ if(*s=='\0'){
if(selection){ if(selection){
s=strrchr(selection->fullname, '/'); s=strrchr(selection->fullname, '/');