mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +00:00
whitespace fix
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@5142 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7de0bc66f0
commit
8e0f2eab6e
3 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
1999-11-09 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
|
* Source/o_vscanf.c (o_vscanf): Don't count '\n' as whitespace.
|
||||||
|
|
||||||
Sun Nov 7 14:04:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
Sun Nov 7 14:04:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||||
|
|
||||||
* Source/Foundation/NSDebug.h: Added NSWarnLog(), NSWarnFLog() and
|
* Source/Foundation/NSDebug.h: Added NSWarnLog(), NSWarnFLog() and
|
||||||
|
|
|
@ -181,10 +181,12 @@ o_vscanf (void *stream,
|
||||||
if (isspace(fc))
|
if (isspace(fc))
|
||||||
{
|
{
|
||||||
/* Whitespace characters match any amount of whitespace. */
|
/* Whitespace characters match any amount of whitespace. */
|
||||||
while (isspace (c))
|
while (isspace (c) && c != '\n')
|
||||||
inchar ();
|
inchar ();
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
else if (c == fc && *f == '\0')
|
||||||
|
continue;
|
||||||
else if (c == fc)
|
else if (c == fc)
|
||||||
(void) inchar();
|
(void) inchar();
|
||||||
else
|
else
|
||||||
|
|
|
@ -85,6 +85,7 @@ create-abbrevs \
|
||||||
create-regions
|
create-regions
|
||||||
|
|
||||||
# The tool Objective-C source files to be compiled
|
# The tool Objective-C source files to be compiled
|
||||||
|
testtool_OBJC_FILES = testtool.m
|
||||||
benchmark_OBJC_FILES = benchmark.m
|
benchmark_OBJC_FILES = benchmark.m
|
||||||
containers_OBJC_FILES = containers.m
|
containers_OBJC_FILES = containers.m
|
||||||
test01_OBJC_FILES = test01.m
|
test01_OBJC_FILES = test01.m
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue