mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Minor documentation fixups
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21347 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ded3b6042e
commit
395a63e061
3 changed files with 14 additions and 6 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-06-23 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Headers/Foundation/NSObject.h:
|
||||
* Documentation/coding-standards.texi:
|
||||
Minor documentation fixes.
|
||||
|
||||
2005-06-22 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSKeyValueCoding.m:
|
||||
|
|
|
@ -61,6 +61,7 @@ into another language, under the above conditions for modified versions.
|
|||
* Memory Management::
|
||||
* Error Handling::
|
||||
* Variable Declaration::
|
||||
* Naming Conventions::
|
||||
* Object Persistence::
|
||||
* Documentation::
|
||||
* Before You Commit::
|
||||
|
@ -135,8 +136,9 @@ White space should be used for clarity throughout. In particular,
|
|||
variable declarations should be separated from code by a blank line and
|
||||
function/method implementations should be separated by a blank line.
|
||||
|
||||
Tabs should ideally not be used (use spaces instead), if used they
|
||||
must be for tab-stops at the standard intervals of 8 spaces.
|
||||
Tabs should not be used (use spaces instead). If you do use them
|
||||
(please don't) they really, really, must be for tab-stops at the
|
||||
standard intervals of 8 spaces.
|
||||
|
||||
All binary operators should be surrounded by white space with the
|
||||
exception of the comma (only a trailing white space), and the
|
||||
|
|
|
@ -54,18 +54,18 @@
|
|||
/**
|
||||
* Macro to check a defined GNUstep version number (GS_GNUSTEP_V) against the
|
||||
* supplied arguments. Returns true if no GNUstep version is specified,
|
||||
* or if ADD <= VER < REM
|
||||
* or if ADD <= VER < REM
|
||||
*/
|
||||
#define GS_API_VERSION(ADD,REM) \
|
||||
(!defined(GS_GNUSTEP_V) || (GS_GNUSTEP_V >= ADD && GS_GNUSTEP_V < REM))
|
||||
(!defined(GS_GNUSTEP_V) || (GS_GNUSTEP_V >= ADD && GS_GNUSTEP_V < REM))
|
||||
|
||||
/**
|
||||
* Macro to check a defined OpenStep/OPENSTEP/MacOS-X version against the
|
||||
* supplied arguments. Returns true if no version is specified, or if
|
||||
* ADD <= VER < REM
|
||||
* ADD <= VER < REM
|
||||
*/
|
||||
#define OS_API_VERSION(ADD,REM) \
|
||||
(!defined(GS_OPENSTEP_V) || (GS_OPENSTEP_V >= ADD && GS_OPENSTEP_V < REM))
|
||||
(!defined(GS_OPENSTEP_V) || (GS_OPENSTEP_V >= ADD && GS_OPENSTEP_V < REM))
|
||||
|
||||
/**
|
||||
* A constant to represent a feature which is not present in any version.
|
||||
|
|
Loading…
Reference in a new issue