mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-08-11 04:30:44 +02:00
fix issue with interupting timed functions; fix for parsing comsubs inside arith for commands; allow break and continue inside arith for expressions; fix for case-insensitive completion with multibyte chars; fix some minor memory leaks; reset read buffer if it returns partial results on EINTR; fix for undo in execute-named-command
This commit is contained in:
@@ -140,3 +140,7 @@ for ((j=;;)); do :; done
|
||||
echo X
|
||||
break
|
||||
echo Y
|
||||
|
||||
# arithmetic for commands need to skip over command substitutions
|
||||
for (( $(case x in x) esac);; )); do break; done
|
||||
for (( ${ case x in x) esac; };; )); do break; done
|
||||
|
||||
Reference in New Issue
Block a user