Changeset 263320f
- Timestamp:
- Apr 28, 2010, 2:27:58 PM (15 years ago)
- Branches:
- master, release-1.10, release-1.7, release-1.8, release-1.9
- Children:
- f7cf6c2
- Parents:
- f9f88f3
- git-author:
- David Benjamin <davidben@mit.edu> (04/28/10 13:21:14)
- git-committer:
- David Benjamin <davidben@mit.edu> (04/28/10 14:27:58)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r07f655b r263320f 64 64 ])]) 65 65 66 AC_CHECK_FUNCS([use_default_colors resizeterm]) 66 AC_CHECK_FUNCS([use_default_colors]) 67 AC_CHECK_FUNCS([resizeterm], [], [AC_MSG_ERROR([No resizeterm found])]) 67 68 AC_CHECK_FUNCS([des_string_to_key DES_string_to_key], [HAVE_DES_STRING_TO_KEY=1]) 68 69 AC_CHECK_FUNCS([des_ecb_encrypt DES_ecb_encrypt], [HAVE_DES_ECB_ENCRYPT=1]) -
global.c
rf9f88f3 r263320f 493 493 g->resizepending = 0; 494 494 495 if (!isendwin()) {496 endwin();497 }498 499 495 _owl_global_get_size(&g->lines, &g->cols); 500 496 if (x != 0) { … … 505 501 } 506 502 507 #ifdef HAVE_RESIZETERM508 503 resizeterm(g->lines, g->cols); 509 #endif510 504 511 505 owl_function_debugmsg("New size is %i lines, %i cols.", g->lines, g->cols);
Note: See TracChangeset
for help on using the changeset viewer.