diff -uNr dmd-0.170/dmd/html/d/changelog.html dmd-0.171/dmd/html/d/changelog.html --- dmd-0.170/dmd/html/d/changelog.html 2006-10-17 02:36:34.000000000 +0200 +++ dmd-0.171/dmd/html/d/changelog.html 2006-10-18 00:18:16.000000000 +0200 @@ -32,7 +32,7 @@ -
Last update Tue Oct 17 02:36:33 2006 +
Last update Wed Oct 18 00:18:13 2006
@@ -188,6 +188,8 @@ -
Last update Sat Oct 14 20:59:59 2006 +
Last update Wed Oct 18 00:17:43 2006
@@ -321,10 +321,13 @@
  • Nesting comments can span multiple lines and can nest. - Comment processing conceptually happens before tokenization. - This means that - embedded strings and comments do not prevent recognition of - comment openings and closings: +

    The contents of strings and comments are not tokenized. Consequently, + comment openings occurring within a string do not begin a comment, and + string delimiters within a comment do not affect the recognition of + comment closings and nested "/+" comment openings. With the exception + of "/+" occurring within a "/+" comment, comment openings within a + comment are ignored. +

    a = /+ // +/ 1;		// parses as if 'a = 1;'
     a = /+ "+/" +/ 1";	// parses as if 'a = " +/ 1";'