- Timestamp:
- Dec 31, 2004, 2:29:21 PM (20 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:
- 667a1b6
- Parents:
- 1ef65fb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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 */
Note: See TracChangeset
for help on using the changeset viewer.