diff --git a/CHANGES b/CHANGES
index 2df8415e..ef80e17e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,27 @@
+This document details the changes between this version, bash-5.1-rc2, and
+the previous version, bash-5.1-beta.
+
+1. Changes to Bash
+
+a. Process substitutions started from an interactive shell no longer have their
+ standard input implicitly redirected from /dev/null.
+
+b. Fixed an issue with setting the SIGINT trap handler in an interactive shell
+ when temporarily running $PROMPT_COMMAND non-interactively.
+
+2. Changes to Readline
+
+a. Terminals that are named "dumb" or unknown do not enable bracketed paste
+ by default.
+
+b. Ensure that disabling bracketed paste turns off highlighting the incremental
+ search string when the search is successful.
+
+3. New Features in Bash
+
+4. New Features in Readline
+
+------------------------------------------------------------------------------
This document details the changes between this version, bash-5.1-rc1, and
the previous version, bash-5.1-beta.
@@ -579,7 +603,7 @@ f. New active mark and face feature: when enabled, it will highlight the text
g. Readline sets the mark in several additional commands.
-h. Bracketed paste mode is enabled by default (for now).
+h. Bracketed paste mode is enabled by default.
i. Readline tries to take advantage of the more regular structure of UTF-8
characters to identify the beginning and end of characters when moving
diff --git a/CHANGES-5.1 b/CHANGES-5.1
index 32fda46a..438cbc8b 100644
--- a/CHANGES-5.1
+++ b/CHANGES-5.1
@@ -1,3 +1,27 @@
+This document details the changes between this version, bash-5.1-rc2, and
+the previous version, bash-5.1-beta.
+
+1. Changes to Bash
+
+a. Process substitutions started from an interactive shell no longer have their
+ standard input implicitly redirected from /dev/null.
+
+b. Fixed an issue with setting the SIGINT trap handler in an interactive shell
+ when temporarily running $PROMPT_COMMAND non-interactively.
+
+2. Changes to Readline
+
+a. Terminals that are named "dumb" or unknown do not enable bracketed paste
+ by default.
+
+b. Ensure that disabling bracketed paste turns off highlighting the incremental
+ search string when the search is successful.
+
+3. New Features in Bash
+
+4. New Features in Readline
+
+------------------------------------------------------------------------------
This document details the changes between this version, bash-5.1-rc1, and
the previous version, bash-5.1-beta.
@@ -575,7 +599,7 @@ f. New active mark and face feature: when enabled, it will highlight the text
g. Readline sets the mark in several additional commands.
-h. Bracketed paste mode is enabled by default (for now).
+h. Bracketed paste mode is enabled by default.
i. Readline tries to take advantage of the more regular structure of UTF-8
characters to identify the beginning and end of characters when moving
diff --git a/CWRU/CWRU.chlog b/CWRU/CWRU.chlog
index a0fc5136..33b37a35 100644
--- a/CWRU/CWRU.chlog
+++ b/CWRU/CWRU.chlog
@@ -9052,7 +9052,7 @@ examples/loadables/asort.c
10/1
----
-[bash-5.1-beta frozen]
+[bash-5.1-rc1 frozen]
10/7
----
@@ -9127,3 +9127,9 @@ lib/readline/isearch.c
- _rl_isearch_dispatch: the requirement for number of available unread
characters (bytes) to trigger the bracketed paste test is now
BRACK_PASTE_SLEN-1, like for non-incremental searches
+
+ 10/29
+ -----
+
+doc/bash.1,lib/readline/rluser.texi
+ - enable-bracketed-paste: change to note the the current default is `On'
diff --git a/NEWS b/NEWS
index bc0eb40b..f59dfa21 100644
--- a/NEWS
+++ b/NEWS
@@ -171,7 +171,7 @@ f. New active mark and face feature: when enabled, it will highlight the text
g. Readline sets the mark in several additional commands.
-h. Bracketed paste mode is enabled by default (for now).
+h. Bracketed paste mode is enabled by default.
i. Readline tries to take advantage of the more regular structure of UTF-8
characters to identify the beginning and end of characters when moving
diff --git a/NEWS-5.1 b/NEWS-5.1
index 3c27cddf..16b8fa32 100644
--- a/NEWS-5.1
+++ b/NEWS-5.1
@@ -171,7 +171,7 @@ f. New active mark and face feature: when enabled, it will highlight the text
g. Readline sets the mark in several additional commands.
-h. Bracketed paste mode is enabled by default (for now).
+h. Bracketed paste mode is enabled by default.
i. Readline tries to take advantage of the more regular structure of UTF-8
characters to identify the beginning and end of characters when moving
diff --git a/doc/bash.0 b/doc/bash.0
index dc7d1b5a..a2239bb4 100644
--- a/doc/bash.0
+++ b/doc/bash.0
@@ -3245,7 +3245,7 @@ RREEAADDLLIINNEE
escapes to begin and end sequences of non-printing characters,
which can be used to embed a terminal control sequence into the
mode string.
- eennaabbllee--bbrraacckkeetteedd--ppaassttee ((OOffff))
+ eennaabbllee--bbrraacckkeetteedd--ppaassttee ((OOnn))
When set to OOnn, readline will configure the terminal in a way
that will enable it to insert each paste into the editing buffer
as a single string of characters, instead of treating each char-
@@ -6401,4 +6401,4 @@ BBUUGGSS
-GNU Bash 5.1 2020 September 23 BASH(1)
+GNU Bash 5.1 2020 October 29 BASH(1)
diff --git a/doc/bash.1 b/doc/bash.1
index 6a75e477..455d8114 100644
--- a/doc/bash.1
+++ b/doc/bash.1
@@ -10,7 +10,7 @@
.\" bash_builtins, strip all but Built-Ins section
.if \n(zZ=1 .ig zZ
.if \n(zY=1 .ig zY
-.TH BASH 1 "2020 September 23" "GNU Bash 5.1"
+.TH BASH 1 "2020 October 29" "GNU Bash 5.1"
.\"
.\" There's some problem with having a `@'
.\" in a tagged paragraph with the BSD man macros.
@@ -5838,7 +5838,7 @@ Use the \e1 and \e2 escapes to begin and end sequences of
non-printing characters, which can be used to embed a terminal control
sequence into the mode string.
.TP
-.B enable\-bracketed\-paste (Off)
+.B enable\-bracketed\-paste (On)
When set to \fBOn\fP, readline will configure the terminal in a way
that will enable it to insert each paste into the editing buffer as a
single string of characters, instead of treating each character as if
diff --git a/doc/bash.html b/doc/bash.html
index 95075682..7b90c48f 100644
--- a/doc/bash.html
+++ b/doc/bash.html
@@ -3,7 +3,7 @@
-| BASH(1) | 2020 September 23 | BASH(1)
+ | BASH(1) | 2020 October 29 | BASH(1)
|
Index
@@ -7445,7 +7445,7 @@ backslash escape sequences is available.
Use the \1 and \2 escapes to begin and end sequences of
non-printing characters, which can be used to embed a terminal control
sequence into the mode string.
-enable-bracketed-paste (Off)
+enable-bracketed-paste (On)
When set to On, readline will configure the terminal in a way
@@ -14253,7 +14253,7 @@ There may be only one active coprocess at a time.
-| GNU Bash 5.1 | 2020 September 23 | BASH(1)
+ | GNU Bash 5.1 | 2020 October 29 | BASH(1)
|
@@ -14360,6 +14360,6 @@ There may be only one active coprocess at a time.
This document was created by man2html from bash.1.
-Time: 01 October 2020 14:49:34 EDT
+Time: 29 October 2020 16:21:32 EDT