Doc updates. GapArray bugfix

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2832 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 1998-07-11 02:34:51 +00:00
parent 698387c534
commit 292dfb3e03
4 changed files with 13 additions and 3 deletions

View file

@ -205,3 +205,7 @@ GetDefEncoding.m
Unicode.m
NSGSequence.m
NSGString.m
Mike Kienenberger:
NSProtocolChecker.m

View file

@ -1,3 +1,8 @@
Fri Jul 10 21:43:30 1998 Adam Fedor <fedor@ultra.doc.com>
* src/include/GapArrayPrivate.h (gapMoveGaptTo): Change - to +.
* docs/todo.tmpl.texi: Updates
Fri Jun 25 20:45:00 1998 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* src/TcpPort.m: Improved debug code and added method to turn it on -

View file

@ -26,8 +26,9 @@ an exception. [4, exceptions, threads] (980220)
@item Fix all the places marked FIXME or xxx. [3-9] (980629)
@item Write a real testsuite for gstep-base and possibly other
libraries, perhaps using guile. [5, Guile, gstep-guile] (980629)
@item Write tests for various classes using the testsuite build
by Richard Frith-Macdonald @email{richard@@brainstorm.co.uk}. Contact
him for details. [3, guile] (980629)
@item Change all the assert()'s (especially in the archiving code) to
NSAssert()'s. This will help make D.O. servers more safe from bad

View file

@ -61,7 +61,7 @@ gapMoveGapTo (GapArray* self, unsigned index)
{
#ifndef STABLE_MEMCPY
for(i = self->_gap_start; i != index; i++)
self->_contents_array[i] = self->_contents_array[i - self->_gap_size];
self->_contents_array[i] = self->_contents_array[i + self->_gap_size];
#else
memcpy (self->_contents_array + self->_gap_start,
self->_contents_array + self->_gap_start + self->_gap_size,