From a7f3ff317278d8179d6006d65b1f9b31e97155b0 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Thu, 24 Jan 2019 22:37:11 -0500 Subject: Remove FreeBSD-specific iswascii call --- edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'edit.c') diff --git a/edit.c b/edit.c index 93cba12..6abd379 100644 --- a/edit.c +++ b/edit.c @@ -97,7 +97,7 @@ static void killForeWord(void) { static void rot13(void) { for (wchar_t *ch = line.buf; ch != line.end; ++ch) { - if (!iswascii(*ch)) continue; + if (*ch > L'z') continue; if (iswupper(*ch)) *ch = L'A' + (*ch - L'A' + 13) % 26; if (iswlower(*ch)) *ch = L'a' + (*ch - L'a' + 13) % 26; } -- cgit 1.4.0