diff options
| author | Mikael Magnusson <mikachu@gmail.com> | 2019-12-26 03:54:17 +0100 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@gmail.com> | 2020-04-02 07:42:16 +0200 |
| commit | 8923d2a61824b0856839d52f3bf52aedb86fd827 (patch) | |
| tree | 7c600a7c3531df51c1e010b5cb2a5c8cfec6fc5c /Src/lex.c | |
| parent | unposted: Make test platform-independent. (diff) | |
| download | zsh-8923d2a61824b0856839d52f3bf52aedb86fd827.tar zsh-8923d2a61824b0856839d52f3bf52aedb86fd827.tar.gz zsh-8923d2a61824b0856839d52f3bf52aedb86fd827.tar.bz2 zsh-8923d2a61824b0856839d52f3bf52aedb86fd827.tar.lz zsh-8923d2a61824b0856839d52f3bf52aedb86fd827.tar.xz zsh-8923d2a61824b0856839d52f3bf52aedb86fd827.tar.zst zsh-8923d2a61824b0856839d52f3bf52aedb86fd827.zip | |
Add SHORT_REPEAT option
Diffstat (limited to 'Src/lex.c')
| -rw-r--r-- | Src/lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -270,7 +270,7 @@ zshlex(void) do { if (inrepeat_) ++inrepeat_; - if (inrepeat_ == 3 && isset(SHORTLOOPS)) + if (inrepeat_ == 3 && (isset(SHORTLOOPS) || isset(SHORTREPEAT))) incmdpos = 1; tok = gettok(); } while (tok != ENDINPUT && exalias()); |
