summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2011-12-07 09:37:19 -0500
committerChet Ramey <chet.ramey@case.edu>2011-12-07 09:37:19 -0500
commita05a1337fd1ddd41aa08f1b61f8351cda760b5b8 (patch)
treeb639580457c54815b86178dbe5332f5a5155e397 /CHANGES
parentdb31fb26445a2ea2e908bac08b247e41388d76a8 (diff)
downloadbash-a05a1337fd1ddd41aa08f1b61f8351cda760b5b8.tar.gz
commit bash-20090212 snapshot
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES52
1 files changed, 52 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 43922c99..0ee8c9b6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,8 +1,60 @@
+This document details the changes between this version, bash-4.0-release,
+and the previous version, bash-4.0-rc1.
+
This document details the changes between this version, bash-4.0-rc1,
and the previous version, bash-4.0-beta2.
1. Changes to Bash
+a. Changed the message printed when setlocale(3) fails to only include the
+ strerror error text if the call changes errno.
+
+b. Changed trap command execution to reset the line number before running a
+ trap (except DEBUG and RETURN traps).
+
+c. Fixed behavior of case-modifiying word expansions to not work on
+ individual words within a variable's value.
+
+d. Fixed a bug that caused mapfile to not be interruptible when run in an
+ interactive shell.
+
+e. Fixed a bug that caused mapfile to not run callbacks for the first line
+ read.
+
+f. Fixed a bug that caused mapfile to not honor EOF typed in an interactive
+ shell.
+
+g. Fixed the coprocess reaping code to not run straight from a signal handler.
+
+h. Fixed a bug that caused printf -b to ignore the first % conversion specifier
+ in the format string on 64-bit systems.
+
+i. Fixed a bug that caused incorrect word splitting when `:', `=', or `~'
+ appeared in $IFS.
+
+j. Fixed a bug that caused data corruption in the programmable completion code
+ when a shell function called from a completion aborted execution.
+
+k. Fixed a bug that caused the CPU usage reported by the `time' builtin to be
+ capped at 100%.
+
+l. Changed behavior of shell when -e option is in effect to reflect consensus
+ of Posix shell standardization working group.
+
+2. Changes to Readline
+
+a. Fixed a bug that caused !(...) extended glob patterns to inhibit later
+ history expansion.
+
+b. Reworked the signal handling to avoid calling disallowed functions from a
+ signal handler.
+
+3. New Features in Bash
+
+a. `readarray' is now a synonym for `mapfile'.
+------------------------------------------------------------------------------
+1. Changes to Bash
+
a. Fixed a bug that caused parsing errors when a $()-style command
substitution was follwed immediately by a quoted newline.