Changeset ec9746d
- Timestamp:
- Mar 25, 2011, 3:55:41 AM (14 years ago)
- Children:
- f578d18
- Parents:
- 25f7c57
- git-author:
- David Benjamin <davidben@mit.edu> (03/03/11 10:27:16)
- git-committer:
- David Benjamin <davidben@mit.edu> (03/25/11 03:55:41)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
global.c
r0af5f9d rec9746d 352 352 353 353 void owl_global_set_resize_pending(owl_global *g) { 354 g->resizepending =1;354 g->resizepending = true; 355 355 } 356 356 … … 452 452 /* resize the screen. If lines or cols is 0 use the terminal size */ 453 453 if (!g->resizepending) return; 454 g->resizepending = 0;454 g->resizepending = false; 455 455 456 456 owl_global_get_terminal_size(&g->lines, &g->cols); -
owl.h
r2314693 rec9746d 585 585 gulong typwin_erase_id; 586 586 int rightshift; 587 volatile sig_atomic_tresizepending;587 bool resizepending; 588 588 char *homedir; 589 589 char *confdir;
Note: See TracChangeset
for help on using the changeset viewer.