about summary refs log tree commit diff
path: root/edit.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-02-21 22:38:22 -0500
committerJune McEnroe <june@causal.agency>2019-02-21 23:17:40 -0500
commitc0c59d093fc5d1d0799c0830b470bfb72cf82062 (patch)
tree538db0714e77ab568e864bffbff3fc9ed78f28be /edit.c
parentClean up man page (diff)
downloadcatgirl-c0c59d093fc5d1d0799c0830b470bfb72cf82062.tar.gz
catgirl-c0c59d093fc5d1d0799c0830b470bfb72cf82062.zip
Remove ROT13
It's just not convenient when it can only do the whole line...
Diffstat (limited to 'edit.c')
-rw-r--r--edit.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/edit.c b/edit.c
index 6abd379..9cc587d 100644
--- a/edit.c
+++ b/edit.c
@@ -95,14 +95,6 @@ static void killForeWord(void) {
 	line.ptr = from;
 }
 
-static void rot13(void) {
-	for (wchar_t *ch = line.buf; ch != line.end; ++ch) {
-		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;
-	}
-}
-
 static char *prefix;
 static void complete(struct Tag tag) {
 	if (!line.tab) {
@@ -184,8 +176,6 @@ void edit(struct Tag tag, enum Edit op, wchar_t ch) {
 		break; case EditKillForeWord: reject(); killForeWord();
 		break; case EditKillLine:     reject(); line.end = line.ptr;
 
-		break; case EditROT13: accept(); rot13();
-
 		break; case EditComplete: complete(tag);
 
 		break; case EditEnter: accept(); enter(tag);
1c0da4139d6fb9daf5d8c83f1e&follow=1'>Support monochromatic terminalsJune McEnroe 2020-02-11Add .gz to chroot-man scriptJune McEnroe 2020-02-11Add -R restricted flagJune McEnroe 2020-02-11Add chroot targetJune McEnroe 2020-02-11Exit focus and paste modes on err exitJune McEnroe 2020-02-11Add startup GPLv3 note and URLJune McEnroe 2020-02-11Make sure -D_GNU_SOURCE ends up in CFLAGS on LinuxJune McEnroe 2020-02-11Add note about setting PKG_CONFIG_PATHJune McEnroe 2020-02-11Rename query ID on nick changeJune McEnroe 2020-02-11Call completeClear when closing a windowJune McEnroe 2020-02-11Don't insert color codes for non-mentionsJune McEnroe 2020-02-11Take first two words in colorMentionsJune McEnroe 2020-02-11Use time_t for save signatureJune McEnroe 2020-02-11Set self.nick to * initiallyJune McEnroe 2020-02-11Define ColorCap instead of hardcoding 100June McEnroe 2020-02-11Move hash to top of chat.hJune McEnroe 2020-02-11Move base64 out of chat.hJune McEnroe 2020-02-11Move XDG_SUBDIR out of chat.hJune McEnroe 2020-02-11Fix whois idle unit calculationJune McEnroe 2020-02-11Cast towupper to wchar_tJune McEnroe 2020-02-11Cast set but unused variables to voidJune McEnroe 2020-02-11Declare strlcatJune McEnroe 2020-02-11Check if VDSUSP existsJune McEnroe 2020-02-11Fix completeReplace iterationJune McEnroe 2020-02-11Use pkg(8) to configure on FreeBSDJune McEnroe 2020-02-11Remove legacy codeJune McEnroe 2020-02-11Add INSTALLING section to READMEJune McEnroe