Skip to content

Commit

Permalink
Merge pull request #478 from 9rnsr/2.065_changelog
Browse files Browse the repository at this point in the history
Revert changelog.dd encoding to UTF-8
  • Loading branch information
MartinNowak authored and AndrewEdwards committed Jan 23, 2014
1 parent 69961ba commit 802aea2
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions changelog.dd
Expand Up @@ -437,16 +437,15 @@ $(LI $(LNAME2 uni_bygrapheme, Add std.uni.byGrapheme and std.uni.byCodePoint.)

void main()
{
string s = "noe\u0308l"; // no�l

string s = "noe\u0308l"; // noël
// reverse it and convert the result back to UTF-8
string reverse = s.byGrapheme()
.array() // Note: byGrapheme will support bidirectionality in the future
.retro()
.byCodePoint()
.text();

assert(reverse == "le\u0308on"); // l�on
assert(reverse == "le\u0308on"); // lëon
}
---------
Note that $(D byGrapheme) will support bidirectionality in the future,
Expand Down Expand Up @@ -775,7 +774,7 @@ $(LI $(BUGZILLA 11738): partialShuffle actually shuffles the entire input)
$(LI $(BUGZILLA 11771): Unicode set intersection with char is broken)
$(LI $(BUGZILLA 11775): std.regex should check for valid repetition range in assert mode)
$(LI $(BUGZILLA 11780): RangeError in format for incomplete format specifier)
$(LI $(BUGZILLA 11808): std.uni.CodepointSet$(LPAREN)'��', 'Я'+1, 'а', '��'+1$(RPAREN) asserts)
$(LI $(BUGZILLA 11808): std.uni.CodepointSet$(LPAREN)'А', 'Я'+1, 'а', 'я'+1$(RPAREN) asserts)
$(LI $(BUGZILLA 11839): std.regex capture group names should allow numbers to be in them)
)
)
Expand Down Expand Up @@ -2036,7 +2035,7 @@ $(LI $(BUGZILLA 10813): ICE$(LPAREN)DMD2.063$(RPAREN) template.c:6040: Identifie
$(LI $(BUGZILLA 10834): cannot use cast$(LPAREN)void$(RPAREN)expr if the type of expr is a struct)
$(LI $(BUGZILLA 10840): [CTFE] *this._data.arr is not yet implemented at compile time)
$(LI $(BUGZILLA 10842): Some integer casts wrongly remove side-effect of the operand.)
$(LI $(BUGZILLA 10857): ICE$(LPAREN)glue.c,���bugzilla 2962?$(RPAREN) or compiles, depending on the files order)
$(LI $(BUGZILLA 10857): ICE$(LPAREN)glue.c, bugzilla 2962?$(RPAREN) or compiles, depending on the files order)
$(LI $(BUGZILLA 10858): CTFE wrong code for comparison of array of pointers)
$(LI $(BUGZILLA 10862): Assignment inside if condition still sometimes accepted)
$(LI $(BUGZILLA 10869): Ddoc mark methods with "const" twice)
Expand Down Expand Up @@ -4031,7 +4030,7 @@ $(LI $(BUGZILLA 9420): [2.062alpha] Weird "$(LPAREN)null$(RPAREN)" output in err
$(LI $(BUGZILLA 9435): regression$(LPAREN)head$(RPAREN): forward reference error)
$(LI $(BUGZILLA 9436): enum cannot be forward referenced with cyclic imports and mixin)
$(LI $(BUGZILLA 9496): [REG 2.061 -> 2.062 alpha] "this[1 .. $]" passes wrong "this" to "opDollar")
$(LI $(BUGZILLA 9514): "template instance �ߡ�is not an alias")
$(LI $(BUGZILLA 9514): "template instance is not an alias")
$(LI $(BUGZILLA 9525): [CTFE] Cannot convert &S to const$(LPAREN)S*$(RPAREN) at compile time)
)

Expand Down

0 comments on commit 802aea2

Please sign in to comment.