Changeset f1c845b for commands.c
- Timestamp:
- May 24, 2011, 9:36:44 PM (14 years ago)
- Parents:
- b848e30 (diff), 697221f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
commands.c
r3b8a563 r697221f 281 281 OWLCMD_ARGS("punt", owl_command_punt, OWL_CTX_ANY, 282 282 "suppress an arbitrary filter", 283 "punt <filter- text>",284 "punt <filter-text (multiple words)> \n"283 "punt <filter-name>\n" 284 "punt <filter-text (multiple words)>", 285 285 "The punt command will suppress messages to the specified\n" 286 286 "filter\n\n" … … 289 289 OWLCMD_ARGS("unpunt", owl_command_unpunt, OWL_CTX_ANY, 290 290 "remove an entry from the punt list", 291 "unpunt < filter-text>\n"292 "unpunt <filter- text>\n"293 "unpunt < number>\n",291 "unpunt <number>\n" 292 "unpunt <filter-name>\n" 293 "unpunt <filter-text (multiple words)>", 294 294 "The unpunt command will remove an entry from the puntlist.\n" 295 "The first two forms correspond to the firsttwo forms of the :punt\n"296 "command. The latter allows you to remove a specific entry from the\n"295 "The last two forms correspond to the two forms of the :punt\n" 296 "command. The first allows you to remove a specific entry from\n" 297 297 "the list (see :show zpunts)\n\n" 298 298 "SEE ALSO: punt, zpunt, zunpunt, show zpunts\n"), … … 2464 2464 owl_list * fl; 2465 2465 owl_filter * f; 2466 char * text;2467 2466 int i; 2468 2467 … … 2480 2479 return; 2481 2480 } else { 2482 owl_function_ error("No such filter number: %d", i+1);2481 owl_function_makemsg("No such filter number: %d.", i+1); 2483 2482 } 2484 2483 } 2485 text = owl_string_build_quoted("filter %q", argv[1]); 2486 owl_function_punt(text, unpunt); 2487 g_free(text); 2484 const char *filter[] = {"filter", argv[1]}; 2485 owl_function_punt(2, filter, unpunt); 2488 2486 } else { 2489 owl_function_punt(skiptokens(buff, 1), unpunt); 2487 /* Pass in argv[1]..argv[argc-1]. */ 2488 owl_function_punt(argc - 1, argv + 1, unpunt); 2490 2489 } 2491 2490 }
Note: See TracChangeset
for help on using the changeset viewer.