[Issue 1812] DDOC - Unicode identifiers are not correctly marked.

2009-09-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1812


Ali Cehreli acehr...@yahoo.com changed:

   What|Removed |Added

 CC||acehr...@yahoo.com


--- Comment #7 from Ali Cehreli acehr...@yahoo.com 2009-09-17 12:03:31 PDT ---
Wanted to add that function parameters with unicode characters don't appear in
the generated documentation as well.

/**
 * BUG: The parameters are not listed under Params in the generated output
 *
 * Params:
 * ü = first
 * ş = second
 * ğ = third
 *
 */
int foo(int ü, int ş, int ğ)
{
return ğ;
}

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


[Issue 1812] DDOC - Unicode identifiers are not correctly marked.

2009-03-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1812





--- Comment #6 from unkn...@simplemachines.org  2009-03-29 23:45 ---
Created an attachment (id=304)
 -- (http://d.puremagic.com/issues/attachment.cgi?id=304action=view)
Use Unicode parsing for identifiers.

This patch makes DDoc use Unicode to parse identifiers, which makes it properly
match them in the doc comments and etc.

-[Unknown]


--