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 @@
+ - What's new for D 0.171
+
- What's new for D 0.170
- What's new for D 0.169
@@ -263,6 +265,26 @@
+
+
+
+Oct 18, 2006
+
+New/Changed Features
+
+
+
+Bugs Fixed
+
+ - Incorporating overlooked Bugzilla 429 change.
+ - Fixed Bugzilla 440: dmd.170 fails to mark final methods as implementations of abstract ones
+
+
+
+
What's New for
D 0.170
diff -uNr dmd-0.170/dmd/html/d/lex.html dmd-0.171/dmd/html/d/lex.html
--- dmd-0.170/dmd/html/d/lex.html 2006-10-14 21:00:00.000000000 +0200
+++ dmd-0.171/dmd/html/d/lex.html 2006-10-18 00:17:44.000000000 +0200
@@ -32,7 +32,7 @@
- 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; a = " +/ 1";