svn commit: r197116 - head/sys/teken

Ed Schouten ed at FreeBSD.org
Sat Sep 12 10:41:33 UTC 2009


Author: ed
Date: Sat Sep 12 10:41:32 2009
New Revision: 197116
URL: http://svn.freebsd.org/changeset/base/197116

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

Modified:
  head/sys/teken/teken.c

Modified: head/sys/teken/teken.c
==============================================================================
--- head/sys/teken/teken.c	Sat Sep 12 10:34:34 2009	(r197115)
+++ head/sys/teken/teken.c	Sat Sep 12 10:41:32 2009	(r197116)
@@ -245,8 +245,8 @@ teken_input_byte(teken_t *t, unsigned ch
 	/*
 	 * 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. */


More information about the svn-src-all mailing list