summary refs log tree commit diff
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
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...
-rw-r--r--chat.h1
-rw-r--r--edit.c10
-rw-r--r--ui.c1
3 files changed, 0 insertions, 12 deletions
diff --git a/chat.h b/chat.h
index 03f3251..441056c 100644
--- a/chat.h
+++ b/chat.h
@@ -162,7 +162,6 @@ enum Edit {
 	EditKillBackWord,
 	EditKillForeWord,
 	EditKillLine,
-	EditROT13,
 	EditComplete,
 	EditEnter,
 };
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);
diff --git a/ui.c b/ui.c
index e634db5..84f35ea 100644
--- a/ui.c
+++ b/ui.c
@@ -474,7 +474,6 @@ static void keyChar(wchar_t ch) {
 			break; case L'f':  edit(ui.view->tag, EditForeWord, 0);
 			break; case L'\b': edit(ui.view->tag, EditKillBackWord, 0);
 			break; case L'd':  edit(ui.view->tag, EditKillForeWord, 0);
-			break; case L'?':  edit(ui.view->tag, EditROT13, 0);
 			break; case L'm':  uiLog(ui.view->tag, UICold, L"");
 			break; default: {
 				if (ch >= L'0' && ch <= L'9') uiViewNum(ch - L'0');
lates can use variables more than onceZachery Notz 2020-04-29backwards compat with new optiondestruc7i0n 2020-04-29add the ability to handle webhook messagesdestruc7i0n 2020-04-19Fixed tellraw components not being encoded properlyBen Landin 2020-02-11Update README.mddestruc7i0n 2020-02-05Precedencedestruc7i0n 2020-02-05Allow specification of the channel name rather than iddestruc7i0n 2020-02-05Some more cleanupdestruc7i0n 2020-02-05More config handlingdestruc7i0n 2020-02-04Update typesdestruc7i0n 2020-02-04Docs updatesdestruc7i0n 2020-02-04Code cleanupdestruc7i0n 2020-02-04Refactor and rebuild to TypeScriptdestruc7i0n 2019-02-11Local file supportdestruc7i0n 2018-11-11Let's make this usable again!destruc7i0n 2018-02-23Allow configurable discord formatArcensoth 2018-02-23Revert example tellraw format to mimic the originalArcensoth 2018-02-23Update readme with new tellraw config optionArcensoth 2018-02-23Allow configurable tellraw formatArcensoth 2018-02-23Allow config file to be passed as a parameterArcensoth