summaryrefslogtreecommitdiff
path: root/CODING_STANDARDS
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-10-29 20:25:09 +0000
committerMarcus Boerger <helly@php.net>2002-10-29 20:25:09 +0000
commit6c132995bb52c3d712bcdb8225c1d5628e68e151 (patch)
tree3543c3f9d0e171a22eacf60af5669e27ede8eeaa /CODING_STANDARDS
parent8c6316ef7b25f73569e79df45aafa1f31244ef8b (diff)
downloadphp-git-6c132995bb52c3d712bcdb8225c1d5628e68e151.tar.gz
rewrite paragraph 9
No instances yet. And it does not work with #if 0_FOO but with #if FOO_0
Diffstat (limited to 'CODING_STANDARDS')
-rw-r--r--CODING_STANDARDS4
1 files changed, 2 insertions, 2 deletions
diff --git a/CODING_STANDARDS b/CODING_STANDARDS
index 077f997063..42ac2f5aa7 100644
--- a/CODING_STANDARDS
+++ b/CODING_STANDARDS
@@ -111,8 +111,8 @@ Exceptions:
Function calls in assert conditions may also cause this problem, if
they modify one of their arguments or global variables.
-[9] When commenting out code using a #if statement, do NOT use 0 only. Append
- to any 0 an _<cvs username here>. For example, #if 0_FOO, where FOO is
+[9] When commenting out code using a #if statement, do NOT use 0 only. Instead
+ use "<cvs username here>_0". For example, #if FOO_0, where FOO is your
cvs user foo. This allows easier tracking of why code was commented out,
especially in bundled libraries.