diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2021-02-17 10:27:09 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2021-02-17 10:27:09 +0000 |
commit | 7eb09ef06dd13e5eb24634a58cfc96002c841a18 (patch) | |
tree | 5a3ab54f431a9fc506bf5b21cf21650144f21847 /libwc | |
parent | Add auto-detection for configure --with-migemo (diff) | |
download | w3m-7eb09ef06dd13e5eb24634a58cfc96002c841a18.tar.gz w3m-7eb09ef06dd13e5eb24634a58cfc96002c841a18.zip |
Typo fix
Diffstat (limited to 'libwc')
-rw-r--r-- | libwc/iso2022.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libwc/iso2022.c b/libwc/iso2022.c index a191f28..8fe23a3 100644 --- a/libwc/iso2022.c +++ b/libwc/iso2022.c @@ -280,12 +280,12 @@ wc_parse_iso2022_esc(wc_uchar **ptr, wc_status *st) state = cs = WC_C_G0_CS96; g = *p & 0x03; continue; - case WC_C_C0: /* ESC '!' */ /* not suported */ - case WC_C_C1: /* ESC '"' */ /* not suported */ - case WC_C_REP: /* ESC '&' */ /* not suported */ + case WC_C_C0: /* ESC '!' */ /* not supported */ + case WC_C_C1: /* ESC '"' */ /* not supported */ + case WC_C_REP: /* ESC '&' */ /* not supported */ state = cs = WC_C_C0; continue; - case WC_C_CSWSR: /* ESC '%' */ /* not suported */ + case WC_C_CSWSR: /* ESC '%' */ /* not supported */ state = cs = WC_C_CSWSR; continue; case WC_C_SS2: /* ESC 'N' */ |