diff options
author | Vincent Richard <[email protected]> | 2005-03-25 17:26:14 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-03-25 17:26:14 +0000 |
commit | 722dd41b384441c994c9ecebfe281245b3a88c52 (patch) | |
tree | 5cbf0c2d84b58685f7badac9abce73ce03a4abaf /HACKING | |
parent | Added 'HACKING' file. (diff) | |
download | vmime-722dd41b384441c994c9ecebfe281245b3a88c52.tar.gz vmime-722dd41b384441c994c9ecebfe281245b3a88c52.zip |
Added a section about EOL character.
Diffstat (limited to 'HACKING')
-rw-r--r-- | HACKING | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -16,6 +16,7 @@ quality of the code. 2.4. Single instruction 2.5. Line length 2.6. Spaces and parentheses + 2.7. End-of-line character 3. Naming conventions 3.1. Classes 3.2. Variables/parameters/member variables @@ -178,6 +179,13 @@ Do use a single space before flow control statements: while (x == y) and _NOT_: while(x==y) +2.7. End-of-line character +-------------------------- + +Configure your editor to use "\n" (UNIX convention) for end-of-line sequence, +and not "\r\n" (Windows), nor "\n\r", nor any other combination. + + 3. Naming conventions ===================== |