Changeset de22c3d
- Timestamp:
- Dec 1, 2003, 2:28:22 PM (19 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:
- d9b0b972
- Parents:
- 2e76340
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r1fd4cd3e rde22c3d 1 1 $Id$ 2 2 3 2.0.13 -pre-33 2.0.13 4 4 Changed startup message for new mailing list 5 5 blist now prints AIM info even if .anyone is unreadable -
owl.c
r2e76340 rde22c3d 37 37 owl_global g; 38 38 39 int main(int argc, char **argv, char **env) { 39 int main(int argc, char **argv, char **env) 40 { 40 41 WINDOW *recwin, *sepwin, *typwin, *msgwin; 41 42 owl_editwin *tw; … … 605 606 } 606 607 607 void sig_handler(int sig, siginfo_t *si, void *data) { 608 void sig_handler(int sig, siginfo_t *si, void *data) 609 { 608 610 if (sig==SIGWINCH) { 609 611 /* we can't inturrupt a malloc here, so it just sets a flag … … 619 621 } 620 622 621 void usage() { 623 void usage() 624 { 622 625 fprintf(stderr, "Owl version %s\n", OWL_VERSION_STRING); 623 626 fprintf(stderr, "Usage: owl [-n] [-d] [-v] [-h] [-c <configfile>] [-t <ttyname>]\n"); … … 630 633 } 631 634 632 633 634 635 #if OWL_STDERR_REDIR 635 636 636 637 /* Replaces stderr with a pipe so that we can read from it. 637 638 * Returns the fd of the pipe from which stderr can be read. */ 638 int stderr_replace(void) { 639 int stderr_replace(void) 640 { 639 641 int pipefds[2]; 640 642 if (0 != pipe(pipefds)) { … … 653 655 654 656 /* Sends stderr (read from rfd) messages to a file */ 655 void stderr_redirect(int rfd) { 657 void stderr_redirect(int rfd) 658 { 656 659 int navail, bread; 657 660 char *buf; -
owl.h
r3162c8a rde22c3d 20 20 static const char owl_h_fileIdent[] = "$Id$"; 21 21 22 #define OWL_VERSION 2.0.13 -pre-323 #define OWL_VERSION_STRING "2.0.13 -pre-3"22 #define OWL_VERSION 2.0.13 23 #define OWL_VERSION_STRING "2.0.13" 24 24 25 25 /* Feature that is being tested to redirect stderr through a pipe.
Note: See TracChangeset
for help on using the changeset viewer.