mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
Tidied
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@13539 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7013871832
commit
ab8d159b07
3 changed files with 16 additions and 1 deletions
|
@ -1155,6 +1155,11 @@ try:
|
|||
}
|
||||
else if ([val length] > 0)
|
||||
{
|
||||
if ([val isEqualToString: @"//"] == YES)
|
||||
{
|
||||
[self skipRemainderOfLine];
|
||||
return [self parseIdentifier];
|
||||
}
|
||||
return val; // Got mapped identifier.
|
||||
}
|
||||
goto try; // Mapping removed the identifier.
|
||||
|
|
|
@ -294,7 +294,11 @@
|
|||
in the source files to other words. Generally you will not have
|
||||
to use this, but it is sometimes helpful to avoid the parser being
|
||||
confused by the use of C preprocessor macros. You can effectively
|
||||
redefine the macro to something less confusing.
|
||||
redefine the macro to something less confusing.<br />
|
||||
The value you map the identifier to must be one of -<br />
|
||||
Another identifier,<br />
|
||||
An empty string - the value is ignored,<br />
|
||||
Two slashes ('//') - the rest of the line is ignored.<br />
|
||||
</item>
|
||||
</list>
|
||||
<section>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue