Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • help.c

    ra16d7e5 rce68f23  
    44void owl_help(void)
    55{
    6   const owl_variable *v;
    76  owl_fmtext fm;
    87  const char *varname;
     
    7069     "    w             Open a URL in the current message\n"
    7170     "    C-l           Refresh the screen\n"
    72      "    C-z           Suspend BarnOwl\n"
     71     "    C-z           Suspend Owl\n"
    7372     "    h             Print this help message\n"
    7473     "    : , M-x       Enter command mode\n"
     
    8483  owl_fmtext_append_normal
    8584    (&fm,
    86      "    quit, exit    Exit BarnOwl\n"
     85     "    quit, exit    Exit owl\n"
    8786     "    help          Get help about commands\n"
    88      "    show          Show information about BarnOwl (see detailed help)\n"
     87     "    show          Show information about owl (see detailed help)\n"
    8988     "\n"
    9089     "    zwrite        Send a zephyr\n"
     
    102101     "    set           Set a variable (see list below)\n"
    103102     "    print         Print a variable's value (variables listed below)\n"
    104      "    startup       Set a command to be run at every BarnOwl startup\n"
    105      "    unstartup     Remove a command to be run at every BarnOwl startup\n"
     103     "    startup       Set a command to be run at every Owl startup\n"
     104     "    unstartup     Remove a command to be run at every Owl startup\n"
    106105     "\n"
    107106     "    getsubs       Print a list of current subscriptions\n"
     
    122121     "    dump          Dump messagelist as text to a file\n"
    123122     "\n"
    124      "    about         Print information about BarnOwl\n"
    125      "    status        Print status information about the running BarnOwl\n"
    126      "    version       Print the version number of BarnOwl\n"
     123     "    about         Print information about owl\n"
     124     "    status        Print status information about the running owl\n"
     125     "    version       Print the version number of owl\n"
    127126     "\n");
    128127 
     
    134133    varname = varnames->pdata[i];
    135134    if (varname && varname[0]!='_') {
    136       v = owl_variable_get_var(owl_global_get_vardict(&g), varname);
    137       owl_variable_describe(v, &fm);
     135      owl_variable_describe(owl_global_get_vardict(&g), varname, &fm);
    138136    }
    139137  }
Note: See TracChangeset for help on using the changeset viewer.