Small style(9) bug introduced in the previous commit.

This commit is contained in:
Ed Schouten 2009-09-12 10:41:32 +00:00
parent e06d84fc49
commit 5e666eb395
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=197116

View File

@ -245,8 +245,8 @@ teken_input_byte(teken_t *t, unsigned char c)
/*
* UTF-8 handling.
*/
if (t->t_utf8_left == -1) {
/* UTF-8 disabled. */
if (t->t_utf8_left == -1) {
/* UTF-8 disabled. */
teken_input_char(t, c);
} else if ((c & 0x80) == 0x00) {
/* One-byte sequence. */