Changeset d1948ce


Ignore:
Timestamp:
Apr 7, 2009, 1:00:29 AM (15 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
owl
Children:
8d0796c0
Parents:
7f19876
Message:
2.1.12 included a patch that breaks opaque resizing for some versions
of ncurses on solaris.  Reverting that part of the change to fix.
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r7f19876 rd1948ce  
    11$Id$
     2
     32.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.
    27
    382.2.1
  • global.c

    r228326a rd1948ce  
    404404  ioctl(STDIN_FILENO, TIOCGWINSZ, &size);
    405405  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;
    411407  } else {
    412       g->lines=x;
     408    g->lines=x;
    413409  }
    414410
    415411  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;
    421413  } else {
    422414    g->cols=y;
  • owl.h

    ra412918 rd1948ce  
    4646static const char owl_h_fileIdent[] = "$Id$";
    4747
    48 #define OWL_VERSION         2.2.1
    49 #define OWL_VERSION_STRING "2.2.1"
     48#define OWL_VERSION         2.2.2
     49#define OWL_VERSION_STRING "2.2.2"
    5050
    5151/* Feature that is being tested to redirect stderr through a pipe.
Note: See TracChangeset for help on using the changeset viewer.