mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Tidied
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@5038 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b30d8134cb
commit
8c8076cd3a
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Oct 19 11:28:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* Source/NSURL.m: skipToNextField() - cope with a nil set of characters
|
||||
to be skipped.
|
||||
|
||||
Fri Oct 15 01:28:16 1999 Lyndon Tremblay <humasect@coolmail.com>
|
||||
|
||||
* Source/NSURL.m: (-[scheme]) removed a hopefully accidentally placed
|
||||
|
|
|
@ -64,7 +64,7 @@ typedef struct {
|
|||
* For internal use only.
|
||||
*/
|
||||
#define skipToNextField() ({\
|
||||
while (_scanLocation < myLength()\
|
||||
while (_scanLocation < myLength() && _charactersToBeSkipped != nil \
|
||||
&& (*_skipImp)(_charactersToBeSkipped, memSel, myCharacter(_scanLocation)))\
|
||||
_scanLocation++;\
|
||||
(_scanLocation >= myLength()) ? NO : YES;\
|
||||
|
|
Loading…
Reference in a new issue