summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/runhistory.in
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-04-19 23:59:33 +0000
committerKarl Berry <karl@freefriends.org>2010-04-19 23:59:33 +0000
commitdddce3148a2bc785603576b18ffcf72d39adbe47 (patch)
tree14f4c79ef11bcf0820a8d4ff2ab0c5ac009c365c /Build/source/utils/asymptote/runhistory.in
parenta01e51b01f5819b6091af48cdca581e9f2a9282e (diff)
asy 1.93
git-svn-id: svn://tug.org/texlive/trunk@17934 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote/runhistory.in')
-rw-r--r--Build/source/utils/asymptote/runhistory.in15
1 files changed, 0 insertions, 15 deletions
diff --git a/Build/source/utils/asymptote/runhistory.in b/Build/source/utils/asymptote/runhistory.in
index 69bbffcd069..51fd99cb8c5 100644
--- a/Build/source/utils/asymptote/runhistory.in
+++ b/Build/source/utils/asymptote/runhistory.in
@@ -72,24 +72,9 @@ namespace run {
extern string emptystring;
#if defined(HAVE_LIBREADLINE) && defined(HAVE_LIBCURSES)
-int readline_startup_hook()
-{
-#ifdef __CYGWIN__
- rl_set_key("\\M-[3~",rl_delete,rl_get_keymap());
- rl_set_key("\\M-[2~",rl_overwrite_mode,rl_get_keymap());
-#endif
- return 0;
-}
void init_readline(bool tabcompletion)
{
- static bool first=true;
- if(first) {
- first=false;
-#ifdef __CYGWIN__
- rl_startup_hook=readline_startup_hook;
-#endif
- }
rl_bind_key('\t',tabcompletion ? rl_complete : rl_insert);
}
#endif