diff options
| author | Peter Stephenson <pws@zsh.org> | 2014-03-20 15:14:49 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@zsh.org> | 2014-03-20 15:14:49 +0000 |
| commit | 9c3733e8f78e71e8847e78ac66d2389135f5785a (patch) | |
| tree | 92c1c2a881c2a72147c0c6c118311ef49f9723a1 | |
| parent | users/18644: bindkey -s doc should have forward reference. (diff) | |
| parent | 32500: handle interrupts during pattern matching (diff) | |
| download | zsh-9c3733e8f78e71e8847e78ac66d2389135f5785a.tar zsh-9c3733e8f78e71e8847e78ac66d2389135f5785a.tar.gz zsh-9c3733e8f78e71e8847e78ac66d2389135f5785a.tar.bz2 zsh-9c3733e8f78e71e8847e78ac66d2389135f5785a.tar.lz zsh-9c3733e8f78e71e8847e78ac66d2389135f5785a.tar.xz zsh-9c3733e8f78e71e8847e78ac66d2389135f5785a.tar.zst zsh-9c3733e8f78e71e8847e78ac66d2389135f5785a.zip | |
Merge branch 'master' of https://git.code.sf.net/p/zsh/code
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | Src/pattern.c | 8 |
2 files changed, 9 insertions, 1 deletions
@@ -9,6 +9,8 @@ 2014-03-18 Barton E. Schaefer <schaefer@zsh.org> + * 32500: Src/pattern.c: handle interrupts during pattern matching + * Jun T: 32497: Test/X02zlevi.ztst, Test/comptest: avoid using comptesteval in the middle of a series of tests; the change in control required for sourcing the command file can confuse the diff --git a/Src/pattern.c b/Src/pattern.c index b79c3b444..94a299ebb 100644 --- a/Src/pattern.c +++ b/Src/pattern.c @@ -2223,6 +2223,8 @@ pattryrefs(Patprog prog, char *string, int stringlen, int unmetalen, return ret; } else { + int q = queue_signal_level(); + /* * Test for a `must match' string, unless we're scanning for a match * in which case we don't need to do this each time. @@ -2270,6 +2272,8 @@ pattryrefs(Patprog prog, char *string, int stringlen, int unmetalen, patinput = patinstart; + dont_queue_signals(); + if (patmatch((Upat)progstr)) { /* * we were lazy and didn't save the globflags if an exclusion @@ -2406,6 +2410,8 @@ pattryrefs(Patprog prog, char *string, int stringlen, int unmetalen, } else ret = 0; + restore_queue_signals(q); + if (tryalloced) zfree(tryalloced, unmetalen + unmetalenp); @@ -2485,7 +2491,7 @@ patmatch(Upat prog) zrange_t from, to, comp; patint_t nextch; - while (scan) { + while (scan && !errflag) { next = PATNEXT(scan); if (!globdots && P_NOTDOT(scan) && patinput == patinstart && |
