aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-12-02 02:30:09 +1000
committerGravatar axel <axel@liljencrantz.se>2006-12-02 02:30:09 +1000
commit02802b509d31f5f999a96257fe9423d069e51bb7 (patch)
treedea046664aca603b0444d925f487e019d70f1ae2 /reader.c
parent7f18dd6a4a551ce1cf8958b784035760705d2c20 (diff)
Make keyboard shortcuts that execute a shellscript function (^D, for example) a lot quicker. This is done by not changing the titlebar message or reexecuting the prompt. A full repaint is still performed though. This patch also changes the behaviour of the 'null' virtual keypress - it no longer reexecutes the prompt, it only causes a repaint.
darcs-hash:20061201163009-ac50b-65508b8e5aa3b2c73695feb0a47a718419868f8e.gz
Diffstat (limited to 'reader.c')
-rw-r--r--reader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/reader.c b/reader.c
index 7c4bbd7e..d29d5010 100644
--- a/reader.c
+++ b/reader.c
@@ -2134,7 +2134,7 @@ wchar_t *reader_readline()
case R_NULL:
{
- exec_prompt();
+// exec_prompt();
s_reset( &data->screen );
repaint();
break;