mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-13 23:20:49 +02:00
fix typo in readline custom LS_COLORS extension; fix so `time' is recognized as a reserved word after $( and ${; don't run traps while parsing a command substitution
This commit is contained in:
+1
-1
@@ -53,7 +53,7 @@ echo abcde | {
|
||||
echo $a
|
||||
}
|
||||
|
||||
read -t .0001 a <<<abcde
|
||||
read -t .001 a <<<abcde
|
||||
echo $a
|
||||
|
||||
# this is the original test that prompted the change to sh_timers
|
||||
|
||||
+1
-2
@@ -57,10 +57,9 @@ echo abcde | {
|
||||
echo $a
|
||||
}
|
||||
|
||||
read -e -t .0001 a <<<abcde
|
||||
read -e -t .001 a <<<abcde
|
||||
echo $a
|
||||
|
||||
set -o posix
|
||||
read -t 0.1 a </dev/tty
|
||||
echo $a
|
||||
|
||||
|
||||
Reference in New Issue
Block a user