summaryrefslogtreecommitdiff
path: root/src/wcwidth.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2015-08-04 14:47:44 -0700
committerJohn Wiegley <johnw@newartisans.com>2015-08-04 14:47:44 -0700
commita24910b3740b572db15fda4bd574222090e16d79 (patch)
treec55016e39e293fc8fa0016eb1eeb4be1bc439b68 /src/wcwidth.cc
parenta3e946f90f902600819f64217c8cd98c72bb21ba (diff)
downloadfork-ledger-a24910b3740b572db15fda4bd574222090e16d79.tar.gz
fork-ledger-a24910b3740b572db15fda4bd574222090e16d79.tar.bz2
fork-ledger-a24910b3740b572db15fda4bd574222090e16d79.zip
Whitespace cleanup
Diffstat (limited to 'src/wcwidth.cc')
-rw-r--r--src/wcwidth.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wcwidth.cc b/src/wcwidth.cc
index c23f83d7..75cd76be 100644
--- a/src/wcwidth.cc
+++ b/src/wcwidth.cc
@@ -195,7 +195,7 @@ int mk_wcwidth(boost::uint32_t ucs)
/* if we arrive here, ucs is not a combining or C0/C1 control character */
- return 1 +
+ return 1 +
(ucs >= 0x1100 &&
(ucs <= 0x115f || /* Hangul Jamo init. consonants */
ucs == 0x2329 || ucs == 0x232a ||