- Timestamp:
- Aug 17, 2002, 10:31:35 AM (22 years ago)
- 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:
- 37c27cf
- Parents:
- 8509c08
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
message.c
re50cd56 r1fd0b25 460 460 owl_fmtext_colorize(&b, color); 461 461 } 462 463 if (owl_global_is_search_active(&g)) { 464 owl_fmtext_search_and_highlight(&b, owl_global_get_search_string(&g)); 465 } 466 462 467 owl_fmtext_curs_waddstr(&b, win); 463 468 … … 626 631 } 627 632 633 int owl_message_search(owl_message *m, char *string) { 634 /* return 1 if the message contains "string", 0 otherwise. This is 635 * case insensitive because the functions it uses are */ 636 637 return (owl_fmtext_search(&(m->fmtext), string)); 638 }
Note: See TracChangeset
for help on using the changeset viewer.