Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • owl.c

    r4cc0ee0b r52f8dd6  
    265265  }
    266266
    267   /* setup the built-in styles */
    268   owl_function_debugmsg("startup: creating built-in styles");
    269 
    270   s=owl_malloc(sizeof(owl_style));
    271   owl_style_create_internal(s, "basic", &owl_stylefunc_basic, "Basic message formatting.");
    272   owl_global_add_style(&g, s);
    273 
    274267  /* setup the default filters */
    275268  /* the personal filter will need to change again when AIM chat's are
     
    400393  if (0 != strcmp(owl_global_get_default_style(&g), "__unspecified__")) {
    401394    /* the style was set by the user: leave it alone */
    402   } else if (owl_global_is_config_format(&g)) {
    403     owl_global_set_default_style(&g, "perl");
    404   } else if (owl_global_is_userclue(&g, OWL_USERCLUE_CLASSES)) {
     395  } else {
    405396    owl_global_set_default_style(&g, "default");
    406   } else {
    407     owl_global_set_default_style(&g, "basic");
    408397  }
    409398
     
    427416  nexttime=time(NULL);
    428417
     418#ifdef HAVE_LIBZEPHYR
     419  /* Check for any zephyrs that have come in while we've done init. */
     420  owl_zephyr_process_events();
     421#endif
     422 
    429423  owl_function_debugmsg("startup: entering main loop");
    430424  /* main loop */
     
    591585  if(owl_message_is_direction_in(m)) {
    592586    /* let perl know about it*/
    593     owl_perlconfig_getmsg(m, 0, NULL);
     587    owl_perlconfig_getmsg(m, NULL);
    594588
    595589    /* do we need to autoreply? */
Note: See TracChangeset for help on using the changeset viewer.