Changeset 8258ea5 for commands.c
- Timestamp:
- Jan 12, 2013, 1:48:20 PM (12 years ago)
- Branches:
- master, release-1.10
- Children:
- de3b1d3, d72ba1e, a62fbdaa
- Parents:
- 4626016
- git-author:
- Jason Gross <jgross@mit.edu> (01/12/13 13:01:08)
- git-committer:
- Jason Gross <jgross@mit.edu> (01/12/13 13:48:20)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
commands.c
r39a531d r8258ea5 1033 1033 OWLCMD_ARGS_CTX("popless:start-search", owl_viewwin_command_start_search, OWL_CTX_POPLESS, 1034 1034 "starts a command line to search for particular string", 1035 "popless:start-search [-r] [init al-value]",1035 "popless:start-search [-r] [initial-value]", 1036 1036 "Initializes the command-line to search for initial-value. If\n" 1037 1037 "-r is used, the search will be performed backwards.\n\n" … … 2190 2190 if (!strcmp(argv[0], "-f")) { 2191 2191 if (argc<2) { 2192 owl_function_makemsg("Too few arg ments to the view command");2192 owl_function_makemsg("Too few arguments to the view command"); 2193 2193 return(NULL); 2194 2194 } … … 2202 2202 } else if (!strcmp(argv[0], "-s")) { 2203 2203 if (argc<2) { 2204 owl_function_makemsg("Too few arg ments to the view command");2204 owl_function_makemsg("Too few arguments to the view command"); 2205 2205 return(NULL); 2206 2206 } … … 2209 2209 argv+=2; 2210 2210 } else { 2211 owl_function_makemsg("Too few arg ments to the view command");2211 owl_function_makemsg("Too few arguments to the view command"); 2212 2212 return(NULL); 2213 2213 }
Note: See TracChangeset
for help on using the changeset viewer.