<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in shlib_version</title>
    <link>http://nxr.netbsd.org/rss/src/lib/libedit/shlib_version</link>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2005</copyright>
    <generator>Java</generator>
    
<item>
    <title>provide an el_init_fd function.</title>
    <description>/src/lib/libedit/shlib_version - 1.19</description>
    <pubDate>Tue Jan 22 20:23:21 UTC 2013</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>branches:  1.18.8;  1.18.14;<br/>bump shared libraries.</title>
    <description>/src/lib/libedit/shlib_version - 1.18</description>
    <pubDate>Sun Jan 11 03:07:48 UTC 2009</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>bump minor.</title>
    <description>/src/lib/libedit/shlib_version - 1.17</description>
    <pubDate>Sat Apr 05 23:53:26 UTC 2008</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>- Add more readline functions, enough for gdb-6.5<br/>- Make el_get varyadic, and implement EL_GETTC.<br/>- XXX: the EL_SETTC api will change in the future.</title>
    <description>/src/lib/libedit/shlib_version - 1.16</description>
    <pubDate>Fri Nov 24 00:01:17 UTC 2006</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>Tokenization function enhancements:<br/>* Make tok_init(), tok_end(), tok_reset(), tok_line() and tok_str()<br/>  publically available in &lt;histedit.h&gt;<br/>* Documented the public functions in editline(3)<br/>* Renamed tok_line() -&gt; tok_str()<br/>* Added new tok_line() which takes a "const LineInfo *" instead of<br/>  "const char *" (the former has "cursor" information), and optionally<br/>  return the argv index ("int *cursorc") and offset within that index<br/>  ("int *cursorv").  This means that completion routines can use the<br/>  tokenization code to crack the line and easily find which word the<br/>  cursor is at.  (mmm, context sensitive completion :)<br/>* Fixed TEST/test.c when using "continuation" lines (unmatched quote<br/>  or \ at EOL), and added some more DEBUG messages including highlighting<br/>  where the cursor is (with a `_').</title>
    <description>/src/lib/libedit/shlib_version - 1.15</description>
    <pubDate>Fri Dec 05 13:37:48 UTC 2003</pubDate>
    <dc:creator>lukem</dc:creator>
</item>

<item>
    <title>Implement enough of readline's 4.0 async mode to make gdb happy. This is<br/>not complete yet, but it seems to work...<br/>This required to introduce an unbuffered mode to el_gets(), but that was<br/>a minor change.</title>
    <description>/src/lib/libedit/shlib_version - 1.14</description>
    <pubDate>Fri Sep 26 17:44:51 UTC 2003</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>- provide enough hooks to compile gdb-5.3<br/>- fix el_get(e, EL_TERMINAL, (char **))</title>
    <description>/src/lib/libedit/shlib_version - 1.13</description>
    <pubDate>Sun Sep 14 21:48:55 UTC 2003</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>PR/14188: Anthony Mallet: Provide an opaque data pointer to client programs.</title>
    <description>/src/lib/libedit/shlib_version - 1.12</description>
    <pubDate>Tue Oct 09 13:50:30 UTC 2001</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>bump libedit minor - addition of rl_special_prefixes and rl_completion_append_character</title>
    <description>/src/lib/libedit/shlib_version - 1.11</description>
    <pubDate>Mon Jan 01 15:54:07 UTC 2001</pubDate>
    <dc:creator>jdolecek</dc:creator>
</item>

<item>
    <title>bump libedit minor - added some public stuff for readline emulation</title>
    <description>/src/lib/libedit/shlib_version - 1.10</description>
    <pubDate>Sat Dec 23 22:07:17 UTC 2000</pubDate>
    <dc:creator>jdolecek</dc:creator>
</item>

<item>
    <title>- implement printing a right-side prompt. code derived from similar work<br/>  I wrote for tcsh(1) three years ago.<br/>- implement EL_RPROMPT, which allows a setting/getting of a function which<br/>  returns a string to be used as the right-side prompt.<br/>- improve HISTORY and AUTHORS sections in editline(3).<br/>- bump shlib minor version for EL_RPROMPT.<br/><br/>XXX: due to an implementation issue, the rprompt has a 1 space gap before the<br/>     edge of the logical screen. editline's logical screen is 1 space less<br/>     than the full screen width, so there's a 2 space gap between the rprompt<br/>     and the right end of the physical screen. i'm not concerned about this.</title>
    <description>/src/lib/libedit/shlib_version - 1.9</description>
    <pubDate>Fri Nov 12 01:05:08 UTC 1999</pubDate>
    <dc:creator>lukem</dc:creator>
</item>

<item>
    <title>branches:  1.8.6;<br/>Add a note to update src/distrib/sets/lists/base/shl.*, and add a missing<br/>RCS Id.</title>
    <description>/src/lib/libedit/shlib_version - 1.8</description>
    <pubDate>Thu Feb 25 08:02:19 UTC 1999</pubDate>
    <dc:creator>abs</dc:creator>
</item>

<item>
    <title>* add more checks for NULL pointers in passed arguments<br/>* implement el_get(EditLine *, int op, void *result), which does the<br/>  inverse of el_set()<br/>* add EL_EDITMODE operation to el_set and el_get; if non zero editing<br/>  is enabled (the default).<br/>* add "edit  on | off" editrc command, which modifies EL_EDITMODE.<br/>  users can now add '*:edit off' in ~/.editrc as an advisory to<br/>  disable editing.<br/><br/>NOTE: at this time EL_EDITMODE is just an indication of the<br/>state of the 'edit' command. It's up to the application to check<br/>this after el_source() or el_parse() to determine if editing is still<br/>required.</title>
    <description>/src/lib/libedit/shlib_version - 1.7</description>
    <pubDate>Wed Jul 29 02:26:01 UTC 1998</pubDate>
    <dc:creator>lukem</dc:creator>
</item>

<item>
    <title>* implement CC_REFRESH_BEEP; as per CC_REFRESH but beep as well. this<br/>  is useful in completion when a partial completion is found<br/>* remove entry in BUGS about el_parse(); that was fixed a while ago</title>
    <description>/src/lib/libedit/shlib_version - 1.6</description>
    <pubDate>Mon Jun 01 14:31:26 UTC 1998</pubDate>
    <dc:creator>lukem</dc:creator>
</item>

<item>
    <title>Bump!</title>
    <description>/src/lib/libedit/shlib_version - 1.5</description>
    <pubDate>Wed May 20 01:03:51 UTC 1998</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>RCSID Police.</title>
    <description>/src/lib/libedit/shlib_version - 1.4</description>
    <pubDate>Mon Jan 05 07:41:08 UTC 1998</pubDate>
    <dc:creator>perry</dc:creator>
</item>

<item>
    <title>PR/4301: Jaromir Dolecek. Add gnu-readline wrapper for editline.</title>
    <description>/src/lib/libedit/shlib_version - 1.3</description>
    <pubDate>Thu Oct 23 22:24:16 UTC 1997</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>PR/4257: Jaromir Dolecek: history() has no generic error handling and isn't<br/>reentrant. This changes the interface of the history function, so we need<br/>a major number bump.</title>
    <description>/src/lib/libedit/shlib_version - 1.2</description>
    <pubDate>Tue Oct 14 15:05:56 UTC 1997</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>local</title>
    <description>/src/lib/libedit/shlib_version - 1.1</description>
    <pubDate>Fri May 06 06:17:47 UTC 1994</pubDate>
    <dc:creator>cgd</dc:creator>
</item>

<item>
    <title>Pull up to last week's -current.</title>
    <description>/src/lib/libedit/shlib_version - 1.8.6.1</description>
    <pubDate>Mon Dec 27 18:29:58 UTC 1999</pubDate>
    <dc:creator>wrstuden</dc:creator>
</item>
</channel></rss>

