zsh-workers
 help / color / mirror / code / Atom feed
* Re: More about ksh_glob and completion
       [not found] <200104300814.KAA02255@beta.informatik.hu-berlin.de>
@ 2001-04-30  9:35 ` Peter Stephenson
  2001-04-30  9:41   ` Sven Wischnowsky
  0 siblings, 1 reply; 2+ messages in thread
From: Peter Stephenson @ 2001-04-30  9:35 UTC (permalink / raw)
  To: Zsh hackers list

Sven wrote:
> Actually, I once thought about pre-compiling them, then had a look at
> the pattern code, was reminded of the options controlling pattern
> matching and...

Yes, the option kshglob is the one at the point of compilation.  This is
pretty much unavoidable in this case --- things like @(foo|bar) behave
completely differently in the two cases and it's just not worth compiling
it both ways on the off chance.  With globsubst, the only question is
tokenisation, and it's easy to make sure the pattern code is independent of
that (there were some glitches in that but I think they've gone).

But I still think precompiling patterns is OK as long as you do it at the
point of first use.  The difficult case

% unsetopt kshglob
% testpat() { setopt kshglob; [[ $1 = @(aardvark|bison) ]]; }

will always work so long as the pattern is compiled at that point.

I believe syntactic structures no longer get copied to be executed, so that
ought to be able to work.

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
CSR Ltd., Unit 300, Science Park, Milton Road,
Cambridge, CB4 0XL, UK                          Tel: +44 (0)1223 392070



**********************************************************************
The information transmitted is intended only for the person or
entity to which it is addressed and may contain confidential 
and/or privileged material. 
Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by 
persons or entities other than the intended recipient is 
prohibited.  
If you received this in error, please contact the sender and 
delete the material from any computer.
**********************************************************************


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

* Re: More about ksh_glob and completion
  2001-04-30  9:35 ` More about ksh_glob and completion Peter Stephenson
@ 2001-04-30  9:41   ` Sven Wischnowsky
  0 siblings, 0 replies; 2+ messages in thread
From: Sven Wischnowsky @ 2001-04-30  9:41 UTC (permalink / raw)
  To: zsh-workers

Peter Stephenson wrote:

> ...
> 
> But I still think precompiling patterns is OK as long as you do it at the
> point of first use.  The difficult case
> 
> % unsetopt kshglob
> % testpat() { setopt kshglob; [[ $1 = @(aardvark|bison) ]]; }
> 
> will always work so long as the pattern is compiled at that point.

Yes, that's what we do: see, for example, the reference to the `pats'
array in the Eprog in cond.c:199 (execcase() contains similar code).

Bye
  Sven


-- 
Sven Wischnowsky                         wischnow@informatik.hu-berlin.de


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

end of thread, other threads:[~2001-04-30  9:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <200104300814.KAA02255@beta.informatik.hu-berlin.de>
2001-04-30  9:35 ` More about ksh_glob and completion Peter Stephenson
2001-04-30  9:41   ` Sven Wischnowsky

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