Changeset d1948ce
- Timestamp:
- Apr 7, 2009, 1:00:29 AM (16 years ago)
- Branches:
- owl
- Children:
- 8d0796c0
- Parents:
- 7f19876
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r7f19876 rd1948ce 1 1 $Id$ 2 3 2.2.2 4 2.1.12 included a patch that breaks opaque resizing for some 5 versions of ncurses on solaris. Reverting that part of the 6 change to fix. 2 7 3 8 2.2.1 -
global.c
r228326a rd1948ce 404 404 ioctl(STDIN_FILENO, TIOCGWINSZ, &size); 405 405 if (x==0) { 406 if (size.ws_row) { 407 g->lines=size.ws_row; 408 } else { 409 g->lines=LINES; 410 } 406 g->lines=size.ws_row; 411 407 } else { 412 408 g->lines=x; 413 409 } 414 410 415 411 if (y==0) { 416 if (size.ws_col) { 417 g->cols=size.ws_col; 418 } else { 419 g->cols=COLS; 420 } 412 g->cols=size.ws_col; 421 413 } else { 422 414 g->cols=y; -
owl.h
ra412918 rd1948ce 46 46 static const char owl_h_fileIdent[] = "$Id$"; 47 47 48 #define OWL_VERSION 2.2. 149 #define OWL_VERSION_STRING "2.2. 1"48 #define OWL_VERSION 2.2.2 49 #define OWL_VERSION_STRING "2.2.2" 50 50 51 51 /* Feature that is being tested to redirect stderr through a pipe.
Note: See TracChangeset
for help on using the changeset viewer.