Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • variable.c

    rf6fae8d r26ad412  
    110110
    111111  OWLVAR_ENUM( "loggingdirection" /* %OwlVarStub */, OWL_LOGGING_DIRECTION_BOTH,
    112                "specifies which kind of messages should be logged",
     112               "specifices which kind of messages should be logged",
    113113               "Can be one of 'both', 'in', or 'out'.  If 'in' is\n"
    114114               "selected, only incoming messages are logged, if 'out'\n"
     
    138138                    "location of users in your .anyone file.  If a user is present\n"
    139139                    "but sent no login message, or a user is not present that sent no\n"
    140                     "logout message, a pseudo login or logout message will be created\n",
     140                    "logout message, a pseudo login or logout message wil be created\n",
    141141                    NULL, owl_variable_pseudologins_set, NULL),
    142142
     
    151151
    152152                 "If non empty, any messages matching the given filter will be logged.\n"
    153                  "This is a completely separate mechanism from the other logging\n"
     153                 "This is a completely separate mechanisim from the other logging\n"
    154154                 "variables like logging, classlogging, loglogins, loggingdirection,\n"
    155155                 "etc.  If you want this variable to control all logging, make sure\n"
     
    186186  OWLVAR_PATH( "debug_file" /* %OwlVarStub */, OWL_DEBUG_FILE,
    187187               "path for logging debug messages when debugging is enabled",
    188                "This file will be logged to if 'debug' is set to 'on'.\n"),
     188               "This file will be logged to if 'debug' is set to 'on'.\n"
     189               "BarnOwl will append a dot and the current process's pid to the filename."),
    189190 
    190191  OWLVAR_PATH( "zsigproc" /* %OwlVarStub:zsigproc */, NULL,
     
    198199  OWLVAR_PATH( "newmsgproc" /* %OwlVarStub:newmsgproc */, NULL,
    199200               "name of a program to run when new messages are present",
    200                "The named program will be run when owl receives new\n"
     201               "The named program will be run when owl recevies new.\n"
    201202               "messages.  It will not be run again until the first\n"
    202203               "instance exits"),
     
    213214                 "Called every time you start a zephyrgram without an\n"
    214215                 "explicit zsig.  The default setting implements the policy\n"
    215                  "described in the documentation for the 'zsig' variable.\n"),
     216                 "descripted in the documentation for the 'zsig' variable.\n"),
    216217
    217218  OWLVAR_STRING( "zsig" /* %OwlVarStub */, "",
     
    297298              "number of seconds after AIM login to ignore login messages",
    298299              "This specifies the number of seconds to wait after an\n"
    299               "AIM login before allowing the receipt of AIM login notifications.\n"
     300              "AIM login before allowing the recipt of AIM login notifications.\n"
    300301              "By default this is set to 15.  If you would like to view login\n"
    301302              "notifications of buddies as soon as you login, set it to 0 instead."),
     
    400401  int rv;
    401402  rv = owl_variable_int_set_default(v, newval);
    402   if (0 == rv) owl_mainpanel_layout_contents(&g.mainpanel);
     403  if (0 == rv) owl_global_set_relayout_pending(&g);
    403404  return(rv);
    404405}
Note: See TracChangeset for help on using the changeset viewer.