summary refs log tree commit diff
path: root/ui.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 /ui.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 '')
-rw-r--r--ui.c1
1 files changed, 0 insertions, 1 deletions
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');