Changeset bbf85df for commands.c


Ignore:
Timestamp:
Jan 12, 2013, 1:43:47 PM (11 years ago)
Author:
Jason Gross <jgross@mit.edu>
Children:
bd71d0f
Parents:
77ad061
git-author:
Jason Gross <jgross@mit.edu> (01/12/13 13:01:08)
git-committer:
Jason Gross <jgross@mit.edu> (01/12/13 13:43:47)
Message:
Fix spelling of various strings.

I dumped `strings barnowl.bin` into a file and ran it through ispell.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • commands.c

    r7869e48 rbbf85df  
    10331033  OWLCMD_ARGS_CTX("popless:start-search", owl_viewwin_command_start_search, OWL_CTX_POPLESS,
    10341034                  "starts a command line to search for particular string",
    1035                   "popless:start-search [-r] [inital-value]",
     1035                  "popless:start-search [-r] [initial-value]",
    10361036                  "Initializes the command-line to search for initial-value. If\n"
    10371037                  "-r is used, the search will be performed backwards.\n\n"
     
    21902190    if (!strcmp(argv[0], "-f")) {
    21912191      if (argc<2) {
    2192         owl_function_makemsg("Too few argments to the view command");
     2192        owl_function_makemsg("Too few arguments to the view command");
    21932193        return(NULL);
    21942194      }
     
    22022202    } else if (!strcmp(argv[0], "-s")) {
    22032203      if (argc<2) {
    2204         owl_function_makemsg("Too few argments to the view command");
     2204        owl_function_makemsg("Too few arguments to the view command");
    22052205        return(NULL);
    22062206      }
     
    22092209      argv+=2;
    22102210    } else {
    2211       owl_function_makemsg("Too few argments to the view command");
     2211      owl_function_makemsg("Too few arguments to the view command");
    22122212      return(NULL);
    22132213    }
Note: See TracChangeset for help on using the changeset viewer.