aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO13
-rw-r--r--src/edbox.c2
2 files changed, 13 insertions, 2 deletions
diff --git a/TODO b/TODO
index df5062e..58927a3 100644
--- a/TODO
+++ b/TODO
@@ -17,8 +17,19 @@ X Configurable ctcp version response. Not going to do for now. Having
Other stuff:
+- [*] edit box issues with the 240th character. Example: fill up the buffer
+ until it beeps, then left-arrow, then ^U.
+- Maybe: if the user types 240 chars into the edit box, then tries to type
+ another, the first 240 chars get sent to the server, the box clears, and
+ the new keystroke appears as the start of a new message. On the fence
+ about this one: irssi does it, but it might surprise people. Could make
+ it a preference...
+- Maybe: get rid of the Hide MOTD and Show PING/PONG preferences. People
+ can always type /motd if they're interested, and the ping/pong stuff has
+ been tested thoroughly by now.
- [*] Start+A should *always* switch windows, even if all are inactive.
- It can act like Start+Left in that case.
+ It can act like Start+Left in that case. Or (I'm told) Start+Tab might
+ be better? Not sure about that one.
- [*] Auto-pinging the server seems to work, but needs more testing.
- If you "/m #channel message" or "/m nick message" from another
screen besides the one for #channel or nick, the message should be
diff --git a/src/edbox.c b/src/edbox.c
index 9c042e7..4043bf2 100644
--- a/src/edbox.c
+++ b/src/edbox.c
@@ -9,7 +9,7 @@
extern void __fastcall__ bell(void);
-char *old_edbox[EDBOX_SIZE];
+char old_edbox[EDBOX_SIZE];
static char old_len;
static char typeover;