Skip to content

Commit

Permalink
-opt -> -o
Browse files Browse the repository at this point in the history
  • Loading branch information
TrilbyWhite committed Jul 23, 2013
1 parent c95d1c7 commit e43bc0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interrobang.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ static int config(int argc, const char **argv) {
if (rc != stdin) fclose(rc);
/* check command line for option overrides */
for (i = 1; i < argc - 1; i++)
if (strncmp(argv[i],"-opt",4)==0) config_string(argv[i+1]);
if (argv[i][0]=='-' && argv[i][1]=='o') config_string(argv[i+1]);
strcpy(line,"");
return 0;
}
Expand Down

0 comments on commit e43bc0c

Please sign in to comment.