Changeset 5789230 for owl.c


Ignore:
Timestamp:
Jun 5, 2003, 2:26:51 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:
aac889a
Parents:
ae4cd12
Message:
'isloginout' and 'isprivate' are now message attributes
improved 'info' function lists seperate info for zephyr, aim and
   also prints all message attributes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • owl.c

    r96f8e5b r5789230  
    1 /* Written by James Kretchmar, MIT
     1/*
    22 *
    33 * Copyright 2001 Massachusetts Institute of Technology
     
    274274
    275275    followlast=owl_global_should_followlast(&g);
     276
     277   
     278    /* If we're logged into AIM, do AIM stuff */
     279    if (owl_global_is_aimloggedin(&g)) {
     280      owl_function_debugmsg("Doing aim processing");
     281      owl_aim_process_events();
     282    }
    276283
    277284    /* little hack */
     
    347354      /* ring the bell if it's a personal */
    348355      if (owl_global_is_personalbell(&g) &&
    349           (owl_message_is_personal(m) ||
    350           (owl_message_is_type_aim(m) && owl_message_is_to_me(m)))) {
     356          !owl_message_is_loginout(m) &&
     357          owl_message_is_private(m)) {
    351358        owl_function_beep();
    352359      }
     
    373380        owl_log_incoming(m);
    374381      }
    375     }
    376 
    377     /* If we're logged into AIM, do AIM stuff */
    378     if (owl_global_is_aimloggedin(&g)) {
    379       owl_function_debugmsg("Doing aim processing");
    380       owl_aim_process_events();
    381382    }
    382383
Note: See TracChangeset for help on using the changeset viewer.