diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2001-04-11 16:47:56 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-04-11 16:47:56 +0000 |
commit | 906c6edb8c65b98eca1c4c7d9b8e63e9bdc5959d (patch) | |
tree | a126541f393063cf6f4c73272fecf7f572d712c8 /shells | |
parent | upgrade to 1.2.8 (diff) |
Our `end' key defintion for TERM==cons25 seems to be different from others.
So make the same localization here that ache made in
src/contrib/libreadline/terminal.c rev 1.2.
Submitted by: sobomax
Notes
Notes:
svn path=/head/; revision=41295
Diffstat (limited to 'shells')
-rw-r--r-- | shells/bash/files/patch-terminal.c | 14 | ||||
-rw-r--r-- | shells/bash2/files/patch-terminal.c | 14 | ||||
-rw-r--r-- | shells/bash3/files/patch-terminal.c | 14 |
3 files changed, 42 insertions, 0 deletions
diff --git a/shells/bash/files/patch-terminal.c b/shells/bash/files/patch-terminal.c new file mode 100644 index 000000000000..73e5c793650b --- /dev/null +++ b/shells/bash/files/patch-terminal.c @@ -0,0 +1,14 @@ +--- lib/readline/terminal.c.orig Tue Feb 6 12:39:22 2001 ++++ lib/readline/terminal.c Wed Apr 11 09:43:44 2001 +@@ -297,7 +297,11 @@ + { "im", &_rl_term_im }, + { "kd", &_rl_term_kd }, + { "kh", &_rl_term_kh }, /* home */ ++#ifdef __FreeBSD__ ++ { "@7", &_rl_term_kH }, /* end */ ++#else + { "kH", &_rl_term_kH }, /* end */ ++#endif + { "kl", &_rl_term_kl }, + { "kr", &_rl_term_kr }, + { "ku", &_rl_term_ku }, diff --git a/shells/bash2/files/patch-terminal.c b/shells/bash2/files/patch-terminal.c new file mode 100644 index 000000000000..73e5c793650b --- /dev/null +++ b/shells/bash2/files/patch-terminal.c @@ -0,0 +1,14 @@ +--- lib/readline/terminal.c.orig Tue Feb 6 12:39:22 2001 ++++ lib/readline/terminal.c Wed Apr 11 09:43:44 2001 +@@ -297,7 +297,11 @@ + { "im", &_rl_term_im }, + { "kd", &_rl_term_kd }, + { "kh", &_rl_term_kh }, /* home */ ++#ifdef __FreeBSD__ ++ { "@7", &_rl_term_kH }, /* end */ ++#else + { "kH", &_rl_term_kH }, /* end */ ++#endif + { "kl", &_rl_term_kl }, + { "kr", &_rl_term_kr }, + { "ku", &_rl_term_ku }, diff --git a/shells/bash3/files/patch-terminal.c b/shells/bash3/files/patch-terminal.c new file mode 100644 index 000000000000..73e5c793650b --- /dev/null +++ b/shells/bash3/files/patch-terminal.c @@ -0,0 +1,14 @@ +--- lib/readline/terminal.c.orig Tue Feb 6 12:39:22 2001 ++++ lib/readline/terminal.c Wed Apr 11 09:43:44 2001 +@@ -297,7 +297,11 @@ + { "im", &_rl_term_im }, + { "kd", &_rl_term_kd }, + { "kh", &_rl_term_kh }, /* home */ ++#ifdef __FreeBSD__ ++ { "@7", &_rl_term_kH }, /* end */ ++#else + { "kH", &_rl_term_kH }, /* end */ ++#endif + { "kl", &_rl_term_kl }, + { "kr", &_rl_term_kr }, + { "ku", &_rl_term_ku }, |