Changeset ec6ff52 for commands.c


Ignore:
Timestamp:
Oct 17, 2003, 5:16:25 PM (21 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
836ea3a3
Parents:
a053de8
Message:
Added the 'show errors' command
Added the error queue
Converted most makemsg's to error instead
Started writing an internal VT style (far from done)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • commands.c

    r2404c3a rec6ff52  
    585585              "show version\n"
    586586              "show view [<view>]\n"
    587               "show status\n",
     587              "show status\n"
     588              "show errors\n",
    588589
    589590              "Show colors will display a list of valid colors for the\n"
     
    600601              "for formatting messages.\n\n"
    601602              "Show variables will list the names of all variables.\n\n"
     603              "Show errors will show a list of errors ecountered by Owl.\n\n"
    602604              "SEE ALSO: filter, view, alias, bindkey, help\n"),
    603605 
     
    19221924  } else if (!strcmp(argv[1], "status")) {
    19231925    owl_function_status();
     1926  } else if (!strcmp(argv[1], "errors")) {
     1927    owl_function_showerrs();
    19241928  } else {
    19251929    owl_function_makemsg("Unknown subcommand for 'show' command (see 'help show' for allowed args)");
Note: See TracChangeset for help on using the changeset viewer.