zsh-workers
 help / color / mirror / code / Atom feed
* Unable to restore suspended function
@ 2023-05-26  3:30 Sean C. Farley
  2023-05-26 19:39 ` Bart Schaefer
  0 siblings, 1 reply; 2+ messages in thread
From: Sean C. Farley @ 2023-05-26  3:30 UTC (permalink / raw)
  To: zsh-workers

I have a simple function to page output of ls.  With Zsh 5.8.1 (and 
earlier), I could suspend it then restore it with fg.  With Zsh 5.9, it 
enters some odd state where I have to call fg a few times before it 
exits (FreeBSD).  It never restores less.  I tested this with FreeBSD 
and Linux.  It works as expected with both FreeBSD's sh and bash.

Test environment (bare bones with no Zsh files in /tmp/zsh):
mkdir /tmp/zsh
env -i ZDOTDIR=/tmp/zsh TERM=${TERM} HOME=${HOME} USER=${USER} zsh
pll() { /bin/ls -lF "${@}" | less; }

Test output (FreeBSD):
% pll /tmp/zsh
total 0
(END)
---- Ctrl+z ----
zsh: done       /bin/ls -lF "${@}" |
zsh: suspended
% fg
[1]  + done       /bin/ls -lF "${@}" |
        continued
zsh: done                    /bin/ls -lF "${@}" |
zsh: suspended (tty output)
zsh: done                    /bin/ls -lF "${@}" |
zsh: suspended (tty output)
% fg
(END)zsh: done                   /bin/ls -lF "${@}" |
zsh: suspended (tty input)
zsh: done                   /bin/ls -lF "${@}" |
zsh: suspended (tty input)
% fg
[1]  + done       /bin/ls -lF "${@}" |
        continued
zsh: done                    /bin/ls -lF "${@}" |
zsh: suspended (tty output)
zsh: done                    /bin/ls -lF "${@}" |
zsh: suspended (tty output)
% fg
[1]  + done       /bin/ls -lF "${@}" |
        continued

Linux is similar but never exits.  It just outputs the "tty output" 
blocks each time fg is called.

Sean
-- 
sean+dev@farley.org


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-05-26 19:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-26  3:30 Unable to restore suspended function Sean C. Farley
2023-05-26 19:39 ` Bart Schaefer

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).