Thread overview
[Issue 6608] New: Tuple field is not escaped
Sep 06, 2011
Kenji Hara
Sep 06, 2011
Kenji Hara
September 06, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6608

           Summary: Tuple field is not escaped
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: nobody@puremagic.com
        ReportedBy: k.hara.pg@gmail.com


--- Comment #0 from Kenji Hara <k.hara.pg@gmail.com> 2011-09-05 22:46:12 PDT ---
From http://d.puremagic.com/issues/show_bug.cgi?id=3813#c17

Phobos in git master (e85103f13e),

> This code:
> 
> import std.stdio, std.typecons;
> void main () {
>     writeln(tuple(1, "xx"));
> }
> 
> 
> Prints:
> Tuple!(int,string)(1, xx)

Expected:

Tuple!(int,string)(1, "xx")

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
September 06, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6608


Kenji Hara <k.hara.pg@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch


--- Comment #1 from Kenji Hara <k.hara.pg@gmail.com> 2011-09-06 00:04:41 PDT ---
https://github.com/D-Programming-Language/phobos/pull/242

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
September 06, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6608


bearophile_hugs@eml.cc changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |bearophile_hugs@eml.cc
         Resolution|                            |FIXED


--- Comment #2 from bearophile_hugs@eml.cc 2011-09-06 01:45:10 PDT ---
Merged, and it works. Thanks for your work.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------