mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-24 06:02:27 +00:00
Bugfixes suggested by Benhur-de-Oliveira.Stein@imag.fr
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3555 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
19b8cf05de
commit
29132b8bad
5 changed files with 38 additions and 7 deletions
|
@ -1287,8 +1287,8 @@ handle_printf_atsign (FILE *stream,
|
|||
unsigned int start, end;
|
||||
|
||||
start=anIndex;
|
||||
while(uni_isnonsp([self characterAtIndex: start]))
|
||||
start++;
|
||||
while(uni_isnonsp([self characterAtIndex: start]) && start > 0)
|
||||
start--;
|
||||
end=start+1;
|
||||
if(end < [self length])
|
||||
while((end < [self length]) && (uni_isnonsp([self characterAtIndex: end])) )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue