Bug 174498

Summary: ncurses return to filter mode will reset (clear) screen after term resize
Product: [Fedora] Fedora Reporter: Erik Petrini <erik.petrini>
Component: ncursesAssignee: Petr Raszyk <praszyk>
Status: CLOSED CURRENTRELEASE QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 3CC: dickey
Target Milestone: ---   
Target Release: ---   
Hardware: i686   
OS: Linux   
Whiteboard:
Fixed In Version: ncurses 5.4 Release 22 Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2005-12-01 14:32:58 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Attachments:
Description Flags
Example of resize clear problem, without SIGWINCH handling.
none
'example of resize clear problem with some (naive?) SIGWINCH handling
none
ncurses-5.4-22.src.rpm none

Description Erik Petrini 2005-11-29 15:46:00 UTC
From Bugzilla Helper:
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)

Description of problem:
When running an application in filter (one line) curses mode a screen reset will occur when returning after temporary exit from curses mode IF a terminal resize has occurred (xterm tested, others probable). Problem is persistent after first resize.

Problem is same whether SIGWINCH is managed by app or not.
Problem cannot be resolved with resizeterm().
No workaround except not resizing the terminal found.

Curiously KEY_WINCH is set at return to to curses mode even though resize event was handled several getch():s before exit.

Note, if run with ncurses-5.4-20 unpatched, the clearing of the screen will probably take place regardless of resizing, see Bug #2966.

Version-Release number of selected component (if applicable):
ncurses-5.4-20   (patch 5.4.20050122)

How reproducible:
Always

Steps to Reproduce:
1. Compile and run attached clrexample or clrexample_small in an xterm window
2. When promted, change window size.
3. Step through rest of program
  

Actual Results:  The last row of output is at top of terminal window which has been cleared.

Expected Results:  The last row of output should be one row below previous output. (Which will happen if no resize is performed.)

Additional info:

Trial example was run on:
xterm -version  =>  X.Org 6.7.0(192)
gcc -v => gcc version 3.4.3 20050227 (Red Hat 3.4.3-22.fc3) (bug reproduced with intel compiler too)

Comment 1 Erik Petrini 2005-11-29 15:48:15 UTC
Created attachment 121588 [details]
Example of resize clear problem, without SIGWINCH handling.

Small example to exemplify bug.
SIGWINCH handling is left to the internal handler.

Comment 2 Erik Petrini 2005-11-29 15:51:52 UTC
Created attachment 121590 [details]
'example of resize clear problem with some (naive?) SIGWINCH handling

An attempt to work around the problem by catching the resize terminal and
resizeterm():ing the window. This file returned a KEY_WINCH on the final getch
call for a resize during the second getch call(!)

Comment 3 Petr Raszyk 2005-11-30 16:37:51 UTC
Thanks for your investigation and examples.

This will be my first step tomorow.

Comment 4 Petr Raszyk 2005-11-30 16:41:03 UTC
tomorrow (not tomorow)

Comment 5 Petr Raszyk 2005-12-01 14:31:59 UTC
Created attachment 121687 [details]
ncurses-5.4-22.src.rpm

Fixed in current release.
Your examples work fine.
Please, can you compile and test *.src.rpm above ?

Comment 6 Erik Petrini 2005-12-01 15:05:33 UTC
OK, will try ncurses-5.4-22 and get back to you.

Comment 7 Erik Petrini 2005-12-02 11:11:24 UTC
With ncurses-5.4-22 everything works as expected.
Great job, thanks!

Comment 8 Petr Raszyk 2005-12-02 11:37:51 UTC
And I thank you for your examples describing precisely the issue above.