# HG changeset patch # User Matti Hamalainen # Date 1355406608 -7200 # Node ID 7f83b1578bda6f35de2f806210b799cee8856489 # Parent 3ae357fd34bb243a956486b08bd07d7536d52766 Ctrl+C is bit too easy to hit on for quitting, remove that. diff -r 3ae357fd34bb -r 7f83b1578bda main.c --- a/main.c Thu Dec 13 15:49:43 2012 +0200 +++ b/main.c Thu Dec 13 15:50:08 2012 +0200 @@ -1512,7 +1512,6 @@ printMsgQ(currWin, "Only friends allowed to PRV you = %s\n", optOnlyFriendPrv ? "ON" : "OFF"); break; - case 0x03: // ^C = quit case KEY_F(9): // F9 = Quit printMsg(currWin, "Quitting per user request (%d/0x%x).\n", c, c); appQuitFlag = TRUE; @@ -1540,7 +1539,6 @@ editState->done = TRUE; break; - case 0x03: // ^C = quit case KEY_F(9): // F9 = Quit printMsg(currWin, "Quitting per user request (%d/0x%x).\n", c, c); appQuitFlag = TRUE;