Changeset 8232149
- Timestamp:
- Dec 31, 2004, 2:29:21 PM (18 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:
- 667a1b6
- Parents:
- 1ef65fb
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r74037d9 r8232149 1 1 $Id$ 2 2 3 2.1.10 -pre-23 2.1.10 4 4 Fix a new problem finding libdes425 5 Don't crash on super-long hostnames [BZ 52]5 Don't crash on very long hostnames [BZ 52] 6 6 In 'sub' command, create .zephyr.subs if it doesn't exist [BZ 15] 7 A fix for certain resize crashes (part from alexmv) [BZ 55] 7 A fix for certain resize crashes (partly from alexmv) [BZ 55] 8 Turn off ISTRIP (gildea) 8 9 9 10 2.1.9 -
functions.c
rca9142e r8232149 971 971 } 972 972 973 /* final clean up*/973 /* done with curses */ 974 974 endwin(); 975 976 /* restore terminal settings */ 977 tcsetattr(0, TCSAFLUSH, owl_global_get_startup_tio(&g)); 978 975 979 owl_function_debugmsg("Quitting Owl"); 976 980 exit(0); -
global.c
r74037d9 r8232149 886 886 return(&(g->zbuddies)); 887 887 } 888 889 struct termios *owl_global_get_startup_tio(owl_global *g) 890 { 891 return(&(g->startup_tio)); 892 } -
owl.c
r74037d9 r8232149 46 46 #include <sys/param.h> 47 47 #include <sys/types.h> 48 #include <termios.h> 48 49 #include <sys/stat.h> 49 50 #include "owl.h" … … 77 78 struct tm *today; 78 79 char *dir; 80 struct termios tio; 79 81 #ifdef HAVE_LIBZEPHYR 80 82 ZNotice_t notice; … … 154 156 sigaction(SIGTERM, &sigact, NULL); 155 157 sigaction(SIGHUP, &sigact, NULL); 158 159 /* save initial terminal settings */ 160 tcgetattr(0, owl_global_get_startup_tio(&g)); 161 162 /* turn ISTRIP off */ 163 tcgetattr(0, &tio); 164 tio.c_iflag &= ~ISTRIP; 165 tcsetattr(0, TCSAFLUSH, &tio); 156 166 157 167 /* screen init */ -
owl.h
r74037d9 r8232149 48 48 #include <time.h> 49 49 #include <signal.h> 50 #include <termios.h> 50 51 #include <libfaim/aim.h> 51 52 #include "config.h" … … 59 60 static const char owl_h_fileIdent[] = "$Id$"; 60 61 61 #define OWL_VERSION 2.1.10 -pre-262 #define OWL_VERSION_STRING "2.1.10 -pre-2"62 #define OWL_VERSION 2.1.10 63 #define OWL_VERSION_STRING "2.1.10" 63 64 64 65 /* Feature that is being tested to redirect stderr through a pipe. … … 561 562 owl_zbuddylist zbuddies; 562 563 owl_timer zephyr_buddycheck_timer; 564 struct termios startup_tio; 563 565 } owl_global; 564 566
Note: See TracChangeset
for help on using the changeset viewer.