summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/wcwidth.cc
Commit message (Collapse)AuthorAgeFilesLines
* Drop double newlines where they seem to serve no purpose.Adam Borowski2013-12-211-1/+0
| | | | | Sometimes, they're there to emphasize a break between two sections of code, which is good. In a majority of cases, though, they're just inconsistent.
* Fix a "no previous declaration" warning on Windows.Adam Borowski2013-04-261-0/+2
|
* Massive style fix (braces, indentation, etc.)Neil Moore2012-08-011-2/+1
|
* Make a few more functions static/gone.Adam Borowski2012-04-231-14/+0
|
* Update the table of combining characters for Unicode 6.0Adam Borowski2010-12-171-37/+61
|
* Add Markus Kuhn's wcwidth(). All libcs but Windows ship it already...Adam Borowski2010-12-171-0/+223
I had to change wchar_t to ucs_t, as Windows cripples it to 16 bits, making it impossible to support most of Unicode. 32 bits will allow proper behaviour at least in tiles -- and we might replace the win32 console as well.