Changeset dafd919


Ignore:
Timestamp:
Jun 6, 2003, 8:42:06 AM (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:
d559df9
Parents:
22fcd366
Message:
Don't ring the terminal bell on mail messages.
Nuke <FONT>
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r378fa14 rdafd919  
    11$Id$
    22
     32.0.3-pre-1
     4        Don't ring the terminal bell on mail messages.
     5        Nuke <FONT>
     6       
    372.0.2
    48        Fixed bug in 'startup' command.
    5        
     9
    6102.0.1
    7         Hacked the Perl build stuff not to link with iconv
    8 
    9 2.0.1-pre-1
    1011        Moved newmsgproc stuff to a function procedure
    1112        Added the 'newlinestrip' variable, on by default, that strips
     
    9899        AIM logging (both in and out) now works
    99100        Disabled 'addbuddy' and 'delbuddy' for aim since it doesn't work yet
     101        Hacked the Perl build stuff not to link with iconv
    100102       
    1011031.2.8
  • owl.c

    r22fcd366 rdafd919  
    355355      if (owl_global_is_personalbell(&g) &&
    356356          !owl_message_is_loginout(m) &&
     357          !owl_message_is_mail(m) &&
    357358          owl_message_is_private(m)) {
    358359        owl_function_beep();
  • owl.h

    r22fcd366 rdafd919  
    1414static const char owl_h_fileIdent[] = "$Id$";
    1515
    16 #define OWL_VERSION         2.0.2
    17 #define OWL_VERSION_STRING "2.0.2"
     16#define OWL_VERSION         2.0.3-pre-1
     17#define OWL_VERSION_STRING "2.0.3-pre-1"
    1818
    1919#define OWL_DEBUG 0
  • text.c

    r75e3879 rdafd919  
    142142    ptr2=strchr(ptr1, '<');
    143143
    144     /* if not, copy in from here to end and exit */
     144    /* if none, copy in from here to end and exit */
    145145    if (ptr2==NULL) {
    146146      strcat(out, ptr1);
     
    164164    /* look for things we know */
    165165    if (!strncasecmp(ptr2, "<BODY ", 6) ||
    166         !strncasecmp(ptr2, "<FONT ", 6) ||
     166        !strncasecmp(ptr2, "<FONT", 5) ||
    167167        !strncasecmp(ptr2, "<HTML", 5) ||
    168168        !strncasecmp(ptr2, "</FONT", 6) ||
Note: See TracChangeset for help on using the changeset viewer.