Re: patch for termcap

2002-10-08 Thread Christopher Faylor
On Mon, Oct 07, 2002 at 11:51:08PM -0400, Christopher Faylor wrote: >On Mon, Oct 07, 2002 at 07:58:12PM -0700, Eduardo Chappa wrote: >>I maintain the Pine package and I've found that the cygwin terminal >>does not support the "scrollregion" capability. However, this is >>listed as one of the capa

Re: patch for termcap

2002-10-07 Thread Eduardo Chappa
*** Christopher Faylor ([EMAIL PROTECTED]) wrote today: :) On Mon, Oct 07, 2002 at 07:58:12PM -0700, Eduardo Chappa wrote: :) >I maintain the Pine package and I've found that the cygwin terminal :) >does not support the "scrollregion" capability. However, this is :) >listed as one of the capabil

Re: patch for termcap

2002-10-07 Thread Christopher Faylor
On Mon, Oct 07, 2002 at 07:58:12PM -0700, Eduardo Chappa wrote: >I maintain the Pine package and I've found that the cygwin terminal >does not support the "scrollregion" capability. However, this is >listed as one of the capabilities of this terminal, under the linux >terminal. The reason it is

patch for termcap

2002-10-07 Thread Eduardo Chappa
the cygwin terminal, because that capability * is either broken or does not exist */ main() { int i; for (i = 1; i < 25;i++) printf("%d\n",i); tputs("\e[10;15r",1,putchar); } --- to compile scroll.c simply execute the command gcc -o scroll scroll.c -lcurse