Changeset dafd919
- Timestamp:
- Jun 6, 2003, 8:42:06 AM (20 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- d559df9
- Parents:
- 22fcd366
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r378fa14 rdafd919 1 1 $Id$ 2 2 3 2.0.3-pre-1 4 Don't ring the terminal bell on mail messages. 5 Nuke <FONT> 6 3 7 2.0.2 4 8 Fixed bug in 'startup' command. 5 9 6 10 2.0.1 7 Hacked the Perl build stuff not to link with iconv8 9 2.0.1-pre-110 11 Moved newmsgproc stuff to a function procedure 11 12 Added the 'newlinestrip' variable, on by default, that strips … … 98 99 AIM logging (both in and out) now works 99 100 Disabled 'addbuddy' and 'delbuddy' for aim since it doesn't work yet 101 Hacked the Perl build stuff not to link with iconv 100 102 101 103 1.2.8 -
owl.c
r22fcd366 rdafd919 355 355 if (owl_global_is_personalbell(&g) && 356 356 !owl_message_is_loginout(m) && 357 !owl_message_is_mail(m) && 357 358 owl_message_is_private(m)) { 358 359 owl_function_beep(); -
owl.h
r22fcd366 rdafd919 14 14 static const char owl_h_fileIdent[] = "$Id$"; 15 15 16 #define OWL_VERSION 2.0. 217 #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" 18 18 19 19 #define OWL_DEBUG 0 -
text.c
r75e3879 rdafd919 142 142 ptr2=strchr(ptr1, '<'); 143 143 144 /* if no t, copy in from here to end and exit */144 /* if none, copy in from here to end and exit */ 145 145 if (ptr2==NULL) { 146 146 strcat(out, ptr1); … … 164 164 /* look for things we know */ 165 165 if (!strncasecmp(ptr2, "<BODY ", 6) || 166 !strncasecmp(ptr2, "<FONT ", 6) ||166 !strncasecmp(ptr2, "<FONT", 5) || 167 167 !strncasecmp(ptr2, "<HTML", 5) || 168 168 !strncasecmp(ptr2, "</FONT", 6) ||
Note: See TracChangeset
for help on using the changeset viewer.