summaryrefslogtreecommitdiff
path: root/CWRU
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2021-04-01 17:25:48 -0400
committerChet Ramey <chet.ramey@case.edu>2021-04-01 17:25:48 -0400
commit8f485ff84c2d67593f8797ee10169f97163c7adb (patch)
tree12474d0f478ed458dcef8156c244286a03a26466 /CWRU
parent65822e501190830edd0223cfa88576b7709177e8 (diff)
downloadbash-8f485ff84c2d67593f8797ee10169f97163c7adb.tar.gz
new readline "fetch-history" bindable command; declare -p output change
Diffstat (limited to 'CWRU')
-rw-r--r--CWRU/CWRU.chlog31
1 files changed, 31 insertions, 0 deletions
diff --git a/CWRU/CWRU.chlog b/CWRU/CWRU.chlog
index 1f2c3c0f..0d5a20a8 100644
--- a/CWRU/CWRU.chlog
+++ b/CWRU/CWRU.chlog
@@ -9925,3 +9925,34 @@ lib/readline/terminal.c
(kN) and bind them to history-search-{backward,forward},
respectively. From a patch from Xose Vazquez Perez
<xose.vazquez@gmail.com>
+
+ 3/30
+ ----
+doc/bashref.texi
+ - expand the node describing $"..." string translation with additional
+ details and examples
+
+ 3/31
+ ----
+misc.c
+ - rl_fetch_history: moved here from vi_mode.c
+ - rl_fetch_history: negative arguments count back from the end of
+ the history, instead of taking you to the beginning of the history
+ list
+ - rl_fetch_history: in vi mode, an out-of-range argument rings the
+ bell and doesn't change the line
+
+vi_mode.c
+ - rl_vi_fetch_history: call rl_fetch_history
+
+readline.h
+ - rl_fetch_history: new extern declaration
+
+doc/bash.1,lib/readline/doc/{readline.3,rluser.texi}
+ - rl_fetch_history: add description
+
+builtins/setattr.def
+ - show_var_attributes: if a variable's value indicates that it should
+ be ANSI-C quoted, use ansic_quote instead of sh_double_quote to
+ format the value string. From proposal by Greg Wooledge
+ <greg@wooledge.org>