zsh-workers
 help / color / mirror / code / Atom feed
* Autoresume bug
@ 1995-07-07 14:32 P.Stephenson
  0 siblings, 0 replies; only message in thread
From: P.Stephenson @ 1995-07-07 14:32 UTC (permalink / raw)
  To: Zsh hackers list

I keep thinking I'm not going to make any more patches for a bit, then
another bug crops up...

With autoresume set, start a background job with `w', e.g.

% while true; do sleep 60; done &
[1] 20550

then try to execute the command w.  It will resume the previous
command.  Arguably this is correct (though I'd much prefer autoresume
to require an exact match on the first word and I'd like to hear other
opinions).

What's definitely wrong, though, is that `command w' (or `exec w' or
`noglob w' ...) do an autoresume as well.  This fixes that.  Yes, the
test is grotesque.

*** Src/exec.c~	Tue Jul  4 12:16:28 1995
--- Src/exec.c	Fri Jul  7 15:25:55 1995
***************
*** 1086,1092 ****
  	bkg = 0;
      }
      if (isset(AUTORESUME) && !bkg && empty(cmd->redir) && full(args) &&
! 	!input && type == SIMPLE && !nextnode(firstnode(args))) {
  	if (unset(NOTIFY))
  	    scanjobs();
  	if (findjobnam(peekfirst(args)) != -1)
--- 1086,1093 ----
  	bkg = 0;
      }
      if (isset(AUTORESUME) && !bkg && empty(cmd->redir) && full(args) &&
! 	!input && type == SIMPLE && !nextnode(firstnode(args)) &&
! 	!cmd->flags) {
  	if (unset(NOTIFY))
  	    scanjobs();
  	if (findjobnam(peekfirst(args)) != -1)

-- 
Peter Stephenson <P.Stephenson@swansea.ac.uk>  Tel: +44 1792 205678 extn. 4461
WWW:  http://python.swan.ac.uk/~pypeters/      Fax: +44 1792 295324
Department of Physics, University of Wales, Swansea,
Singleton Park, Swansea, SA2 8PP, U.K.


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~1995-07-07 14:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1995-07-07 14:32 Autoresume bug P.Stephenson

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).