diff options
Diffstat (limited to 'bin/stty/modes.c')
-rw-r--r-- | bin/stty/modes.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/bin/stty/modes.c b/bin/stty/modes.c index 5cd3061aa449..d63b958680de 100644 --- a/bin/stty/modes.c +++ b/bin/stty/modes.c @@ -27,14 +27,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)modes.c 8.3 (Berkeley) 4/2/94"; -#endif -#endif /* not lint */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <string.h> #include "stty.h" @@ -128,6 +120,8 @@ static const struct modes imodes[] = { { "-decctlq", IXANY, 0 }, { "imaxbel", IMAXBEL, 0 }, { "-imaxbel", 0, IMAXBEL }, + { "iutf8", IUTF8, 0 }, + { "-iutf8", 0, IUTF8 }, { NULL, 0, 0 }, }; |