Changeset 451db9e for commands.c


Ignore:
Timestamp:
Sep 18, 2008, 6:51:15 PM (16 years ago)
Author:
Geoffrey Thomas <geofft@mit.edu>
Branches:
master, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
0eb4036
Parents:
7ba9ead9
Message:
A bunch of spelling and grammar fixes, some obvious, some pedantic
File:
1 edited

Legend:

Unmodified
Added
Removed
  • commands.c

    rfd472a7 r451db9e  
    5151              "when owl is started and a logout notification is sent when owl\n"
    5252              "is exited.  This behavior can be changed with the 'startuplogin'\n"
    53               "and 'shudownlogout' variables.  If a tty is specified for zlog in\n"
     53              "and 'shutdownlogout' variables.  If a tty is specified for zlog in\n"
    5454              "then the owl variable 'tty' will be set to that string, causing\n"
    5555              "it to be used as the zephyr location tty.\n"),
     
    194194              "subscribe to a zephyr class, instance, recipient",
    195195              "subscribe [-t] <class> [instance [recipient]]",
    196               "Subscribe the specified class and instance.  If the\n"
     196              "Subscribe to the specified class and instance.  If the\n"
    197197              "instance or recipient is not listed on the command\n"
    198198              "line they default to * (the wildcard recipient).\n"
     
    265265              "zpunt <instance>",
    266266              "The zpunt command will supress message to the specified\n"
    267               "zephyr triplet.  In the second usage messages as supressed\n"
     267              "zephyr triplet.  In the second usage messages are suppressed\n"
    268268              "for class MESSAGE and the named instance.\n\n"
    269269              "SEE ALSO:  zunpunt, show zpunts\n"),
     
    273273              "zunpunt <class> <instance> [recipient]\n"
    274274              "zunpunt <instance>",
    275               "The zunpunt command will allow messages that were previosly\n"
     275              "The zunpunt command will allow messages that were previously\n"
    276276              "suppressed to be received again.\n\n"
    277277              "SEE ALSO:  zpunt, show zpunts\n"),
     
    547547              "    true\n"
    548548              "    false\n"
    549               "Spaces must be present before and after parenthesis.  If the\n"
     549              "Spaces must be present before and after parentheses.  If the\n"
    550550              "optional color arguments are used they specifies the colors that\n"
    551551              "messages matching this filter should be displayed in.\n\n"
     
    594594              "If the curmsg is a personal message narrow\n"
    595595              "   to the conversation with that user.\n"
    596               "If the curmsg is a class message, instance foo, recip *\n"
    597               "   message, narrow to the class, inst.\n"
    598               "If the curmsg is a class message then narrow\n"
     596              "If the curmsg is a <MESSAGE, foo, *>\n"
     597              "   message, narrow to the instance.\n"
     598              "If the curmsg is a class message, narrow\n"
    599599              "    to the class.\n"
    600               "If the curmsg is a class message and '-i' is specied\n"
    601               "    then narrow to the class, instance\n"),
     600              "If the curmsg is a class message and '-i' is specified\n"
     601              "    then narrow to the class and instance.\n"),
    602602
    603603  OWLCMD_ARGS("smartfilter", owl_command_smartfilter, OWL_CTX_INTERACTIVE,
     
    606606              "If the curmsg is a personal message, the filter is\n"
    607607              "   the conversation with that user.\n"
    608               "If the curmsg is a class message, instance foo, recip *\n"
    609               "   message, the filter is the class, inst.\n"
     608              "If the curmsg is a <MESSAGE, foo, *>\n"
     609              "   message, the filter is to that instance.\n"
    610610              "If the curmsg is a class message, the filter is that class.\n"
    611611              "If the curmsg is a class message and '-i' is specied\n"
    612               "    the filter is that <class,instance> pair\n"),
     612              "    the filter is to that class and instance.\n"),
    613613
    614614  OWLCMD_ARGS("viewclass", owl_command_viewclass, OWL_CTX_INTERACTIVE,
     
    676676              "If no message id is specified the current message is marked\n"
    677677              "for deletion.  Otherwise the message with the given message\n"
    678               "id is marked for deltion.\n"
     678              "id is marked for deletion.\n"
    679679              "If '--no-move' is specified, don't move after deletion.\n"
    680680              "If 'trash' is specified, deletes all trash/auto messages\n"
     
    690690              "If no message id is specified the current message is\n"
    691691              "unmarked for deletion.  Otherwise the message with the\n"
    692               "given message id is marked for undeltion.\n"
     692              "given message id is unmarked for deletion.\n"
    693693              "If '--no-move' is specified, don't move after deletion.\n"
    694694              "If 'view' is specified, undeletes all messages\n"
     
    729729              "specified string and move the cursor there.  If no string\n"
    730730              "argument is supplied then the previous one is used.  By\n"
    731               "default searches are done fowards, if -r is used the search\n"
     731              "default searches are done forwards; if -r is used the search\n"
    732732              "is performed backwards"),
    733733
     
    738738          "argument and makes it the default argument for future\n"
    739739          "search commands, but does not move the cursor.  With\n"
    740           "no argument, it makes search inactive."),
     740          "no argument, it makes search highlighting inactive."),
    741741
    742742  OWLCMD_ARGS("aimlogin", owl_command_aimlogin, OWL_CTX_ANY,
     
    26162616  cmd = owl_message_get_attribute_value(m, "yescommand");
    26172617  if(!cmd) {
    2618     owl_function_error("No yes command!");
     2618    owl_function_error("No 'yes' command!");
    26192619    return;
    26202620  }
     
    26502650  cmd = owl_message_get_attribute_value(m, "nocommand");
    26512651  if(!cmd) {
    2652     owl_function_error("No no command!");
     2652    owl_function_error("No 'no' command!");
    26532653    return;
    26542654  }
Note: See TracChangeset for help on using the changeset viewer.