diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2024-04-14 23:36:25 +0200 | 
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2024-04-14 23:36:25 +0200 | 
| commit | 23ebf52d041fffc89b92204bb8c4f882d049631b (patch) | |
| tree | 876b98bdb1346ccefc620dbeed44e56ed5fdd59e /lib/unicode | |
| parent | 16fb7bf070a0a49b81026e2bb4b4d208fcd69c95 (diff) | |
Fix indentation
Diffstat (limited to 'lib/unicode')
| -rw-r--r-- | lib/unicode/prop/uprop_get_lc.c | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/unicode/prop/uprop_get_lc.c b/lib/unicode/prop/uprop_get_lc.c index 7d90d8d..0ce1072 100644 --- a/lib/unicode/prop/uprop_get_lc.c +++ b/lib/unicode/prop/uprop_get_lc.c @@ -16,12 +16,12 @@ uprop_get_lc(rune ch, struct lcctx ctx)  	if (ctx.lt) {  		if (ctx.before_acc) {  			switch (ch) { -				case 'I': -					return M('i', 0x307); -				case 'J': -					return M('j', 0x307); -				case U'Į': -					return M(U'į', 0x307); +			case 'I': +				return M('i', 0x307); +			case 'J': +				return M('j', 0x307); +			case U'Į': +				return M(U'į', 0x307);  			}  		}  |