<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/lib/libedit/tokenizer.c, branch releng/9.3</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=releng%2F9.3</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=releng%2F9.3'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2012-08-22T20:06:59Z</updated>
<entry>
<title>MFC	r238178, 238624, 238810:</title>
<updated>2012-08-22T20:06:59Z</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2012-08-22T20:06:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=aece5e514e668d8cc9455fbc2c3870c94aab3ff2'/>
<id>urn:sha1:aece5e514e668d8cc9455fbc2c3870c94aab3ff2</id>
<content type='text'>
Re-merge a couple of changes from NetBSD libedit.

bin/sh has been taught about el_gets setting the count to -1
on error, so now we can partially revert r238173 to reduce
differences with NetBSD's implementation.

Also fix some warnings to be more in sync with NetBSD.

Obtained from:	NetBSD
</content>
</entry>
<entry>
<title>Sync libedit with recent NetBSD developments.  Including improvements to the</title>
<updated>2005-08-07T20:55:59Z</updated>
<author>
<name>Stefan Farfeleder</name>
<email>stefanf@FreeBSD.org</email>
</author>
<published>2005-08-07T20:55:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=76d00450e675825131c7cd211e274537cd42a542'/>
<id>urn:sha1:76d00450e675825131c7cd211e274537cd42a542</id>
<content type='text'>
vi-mode, removal of clause 3, cleanups and the export of the tokenization
functions.

Not included: config.h, filecomplete.{c,h}
</content>
</entry>
<entry>
<title>Revert the replacement of realloc() with reallocf() (el.h:1.2, map.c:1.5 and</title>
<updated>2005-08-07T08:35:39Z</updated>
<author>
<name>Stefan Farfeleder</name>
<email>stefanf@FreeBSD.org</email>
</author>
<published>2005-08-07T08:35:39Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=969f70013850f952bf41a8abfe728f632b6fd5fb'/>
<id>urn:sha1:969f70013850f952bf41a8abfe728f632b6fd5fb</id>
<content type='text'>
tokenizer.c:1.3).  Contrary to the commit log there were no memory leaks,
but the change introduced a bug because the free'd pointer was not zeroed
and calling the appropriate _end() function would call free() a second time.
</content>
</entry>
<entry>
<title>Fix ID's after a total boch CVS merge due to multiple people making</title>
<updated>2001-10-01T23:00:29Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2001-10-01T23:00:29Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=0878b3a9b13e602bf1a31682dd465c0a0debb282'/>
<id>urn:sha1:0878b3a9b13e602bf1a31682dd465c0a0debb282</id>
<content type='text'>
commits to these files.
As I sing to CVS:
	Have I told you lately that I hate your guts?  Have I told you
	all SCM's are above you?  You fill my heart with pain, take away
	all my merging joy, grow my troubles that's what you do."
</content>
</entry>
<entry>
<title>+ Sync with NetBSD, bringing in feature enhancements.</title>
<updated>2001-10-01T08:41:27Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2001-10-01T08:41:27Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=3c195773444850fbd9cf231761a4f76eaf863e5a'/>
<id>urn:sha1:3c195773444850fbd9cf231761a4f76eaf863e5a</id>
<content type='text'>
+ Convert to ANSI-C function definitions
+ style(9)

Submitted by:	kris
</content>
</entry>
<entry>
<title>Add __FBSDID()s to libedit</title>
<updated>2001-09-30T21:21:36Z</updated>
<author>
<name>Matthew Dillon</name>
<email>dillon@FreeBSD.org</email>
</author>
<published>2001-09-30T21:21:36Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=0622d6c77b6a774b222cffab0be6eb9b4ad71f1b'/>
<id>urn:sha1:0622d6c77b6a774b222cffab0be6eb9b4ad71f1b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Replace memory leaking instances of realloc with non-leaking reallocf.</title>
<updated>1998-09-16T04:17:47Z</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>1998-09-16T04:17:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=e8420087b0ae4a2d0611cd2f6413d150cfc83554'/>
<id>urn:sha1:e8420087b0ae4a2d0611cd2f6413d150cfc83554</id>
<content type='text'>
In some cases replace if (a == null) a = malloc(x); else a =
realloc(a, x); with simple reallocf(a, x).  Per ANSI-C, this is
guaranteed to be the same thing.

I've been running these on my system here w/o ill effects for some
time.  However, the CTM-express is at part 6 of 34 for the CAM
changes, so I've not been able to do a build world with the CAM in the
tree with these changes.  Shouldn't impact anything, but...
</content>
</entry>
<entry>
<title>Remove trailing whitespace.</title>
<updated>1995-05-30T05:51:47Z</updated>
<author>
<name>Rodney W. Grimes</name>
<email>rgrimes@FreeBSD.org</email>
</author>
<published>1995-05-30T05:51:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=6c06b4e2aa2a28d1f0bbd29ecdce35aaaf600ce8'/>
<id>urn:sha1:6c06b4e2aa2a28d1f0bbd29ecdce35aaaf600ce8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>BSD 4.4 Lite Lib Sources</title>
<updated>1994-05-27T05:00:24Z</updated>
<author>
<name>Rodney W. Grimes</name>
<email>rgrimes@FreeBSD.org</email>
</author>
<published>1994-05-27T05:00:24Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=58f0484fa251c266ede97b591b499fe3dd4f578e'/>
<id>urn:sha1:58f0484fa251c266ede97b591b499fe3dd4f578e</id>
<content type='text'>
</content>
</entry>
</feed>
