]> git.ipfire.org Git - thirdparty/readline.git/commitdiff
commit readline-20151002 snapshot
authorChet Ramey <chet.ramey@case.edu>
Mon, 12 Oct 2015 14:29:04 +0000 (10:29 -0400)
committerChet Ramey <chet.ramey@case.edu>
Mon, 12 Oct 2015 14:29:04 +0000 (10:29 -0400)
CHANGES
doc/history.dvi
doc/history.html
doc/history.info
doc/history.pdf
doc/history.ps
history.c
patchlevel

diff --git a/CHANGES b/CHANGES
index 8436701615bbd56a0e8565216b9af32bc0eeb8ff..13d75fc63ede4d933e2bd78a0289d540e5c49dc2 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -55,6 +55,29 @@ q.  Fixed a bug that caused readline commands that depend on knowing which
 
 r.  Paren matching now works in vi insert mode.
 
+s.  Colored completion prefixes are now displayed using a different color, less
+    likely to collide with files.
+
+t.  Fixed a bug that caused vi-mode character search to misbehave when
+    running in callback mode.
+
+u.  Fixed a bug that caused output to be delayed when input is coming from a
+    macro in vi-mode.
+
+v.  Fixed a bug that caused the vi-mode `.' command to misbehave when redoing
+    a multi-key key sequence via a macro.
+
+w.  Fixed a bug that caused problems with applications that supply their own
+    input function when performing completion.
+
+x.  When read returns -1/EIO when attempting to read a key, return an error
+    instead of line termination back to the caller.
+
+y.  Updated tty auditing feature based on patch from Red Hat.
+
+z.  Fixed a bug that could cause the history library to crash on overflows
+    introduced by malicious editing of timestamps in the history file.
+
 2.  New Features in Readline
 
 a.  The history truncation code now uses the same error recovery mechansim as
index 2b51dc777496d2eabb5941a216570ed8e9bef2c6..7007d52097509e8ade2d1a186abe64027e0623e3 100644 (file)
Binary files a/doc/history.dvi and b/doc/history.dvi differ
index ce350046debd7b34e9409ddbedb839cee4288f54..cba753578bda3d6fbe37f02dd04ee10d115f2b6b 100644 (file)
@@ -1,6 +1,6 @@
 <HTML>
 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<!-- Created on July, 1  2015 by texi2html 1.64 -->
+<!-- Created on September, 29  2015 by texi2html 1.64 -->
 <!-- 
 Written by: Lionel Cons <Lionel.Cons@cern.ch> (original author)
             Karl Berry  <karl@freefriends.org>
@@ -2129,7 +2129,7 @@ to permit their use in free software.
 <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="history.html#SEC_About"> ? </A>]</TD>
 </TR></TABLE>
 <H1>About this document</H1>
-This document was generated by <I>Chet Ramey</I> on <I>July, 1  2015</I>
+This document was generated by <I>Chet Ramey</I> on <I>September, 29  2015</I>
 using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html
 "><I>texi2html</I></A>
 <P></P>  
@@ -2291,7 +2291,7 @@ the following structure:
 <BR>  
 <FONT SIZE="-1">
 This document was generated
-by <I>Chet Ramey</I> on <I>July, 1  2015</I>
+by <I>Chet Ramey</I> on <I>September, 29  2015</I>
 using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html
 "><I>texi2html</I></A>
 
index 0ddd616a0e53678238ebab2ae8a99962021c29bb..a40f2e74db9124a71fe890d340477946b4ad6ff0 100644 (file)
@@ -1,4 +1,4 @@
-This is history.info, produced by makeinfo version 5.2 from
+This is history.info, produced by makeinfo version 6.0 from
 history.texi.
 
 This document describes the GNU History library (version 6.4, 28 May
index 6e262f1cb90c5582e1edff9da476bba5843b4e4b..0954255372e3d7ed17f83963ac16144da3a3f20c 100644 (file)
Binary files a/doc/history.pdf and b/doc/history.pdf differ
index 17add70e7119c3f5f267f8bb9fa85790d98ffff1..a98207ee5f6b17a19763a482430a30b4b4e82e21 100644 (file)
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
-%%Creator: dvips(k) 5.994 Copyright 2014 Radical Eye Software
+%%Creator: dvips(k) 5.995 Copyright 2015 Radical Eye Software
 %%Title: history.dvi
-%%CreationDate: Wed Jul  1 10:32:46 2015
+%%CreationDate: Tue Sep 29 09:50:39 2015
 %%Pages: 24
 %%PageOrder: Ascend
 %%BoundingBox: 0 0 612 792
@@ -12,7 +12,7 @@
 %DVIPSWebPage: (www.radicaleye.com)
 %DVIPSCommandLine: dvips -D 600 -t letter -o history.ps history.dvi
 %DVIPSParameters: dpi=600
-%DVIPSSource:  TeX output 2015.07.01:1032
+%DVIPSSource:  TeX output 2015.09.29:0950
 %%BeginProcSet: tex.pro 0 0
 %!
 /TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S
index a0b12e1d1686cce2c00c890a95dc7a7a7c9a27a0..216b2a56c98d13f38b8c09a597e4ffdacb45a861 100644 (file)
--- a/history.c
+++ b/history.c
@@ -325,7 +325,7 @@ add_history (string)
        }
     }
 
-  temp = alloc_history_entry (string, hist_inittime ());
+  temp = alloc_history_entry ((char *)string, hist_inittime ());
 
   the_history[history_length] = (HIST_ENTRY *)NULL;
   the_history[history_length - 1] = temp;
index 6c10f126a3ec0693ae873faa07e809054b8f6ece..d8c9df7e6bb19b63a7c7f1c4f192a91529e40699 100644 (file)
@@ -1,3 +1,3 @@
 # Do not edit -- exists only for use by patch
 
-8
+0