summaryrefslogtreecommitdiff
path: root/devel/readline/patches/patch-aa
diff options
context:
space:
mode:
authorhubertf <hubertf@pkgsrc.org>1998-04-21 08:36:12 +0000
committerhubertf <hubertf@pkgsrc.org>1998-04-21 08:36:12 +0000
commitcd7d51ee24403fc1de52315610305e29b875fcf3 (patch)
tree76954da78304920a719e80d2e2ec51fb05f5b8a3 /devel/readline/patches/patch-aa
parent77f1420d687abee0dfb5405d05935909255c4e9b (diff)
downloadpkgsrc-cd7d51ee24403fc1de52315610305e29b875fcf3.tar.gz
Update to V2.2
Diffstat (limited to 'devel/readline/patches/patch-aa')
-rw-r--r--devel/readline/patches/patch-aa39
1 files changed, 0 insertions, 39 deletions
diff --git a/devel/readline/patches/patch-aa b/devel/readline/patches/patch-aa
index cca6079b780..d7a844ef6a6 100644
--- a/devel/readline/patches/patch-aa
+++ b/devel/readline/patches/patch-aa
@@ -140,42 +140,3 @@
}
if (_rl_last_v_pos > 0)
_rl_move_vert (0);
---- terminal.c.old Sat Jan 10 17:13:57 1998
-+++ terminal.c Sat Jan 10 17:14:48 1998
-@@ -460,7 +460,7 @@
- #if !defined (__GO32__)
- if (term_backspace)
- for (i = 0; i < count; i++)
-- tputs (term_backspace, 1, _rl_output_character_function);
-+ tputs (term_backspace, 1, (void *)_rl_output_character_function);
- else
- #endif /* !__GO32__ */
- for (i = 0; i < count; i++)
-@@ -495,7 +495,7 @@
- case VISIBLE_BELL:
- if (visible_bell)
- {
-- tputs (visible_bell, 1, _rl_output_character_function);
-+ tputs (visible_bell, 1, (void *)_rl_output_character_function);
- break;
- }
- /* FALLTHROUGH */
-@@ -530,7 +530,7 @@
- _rl_enable_meta_key ()
- {
- if (term_has_meta && term_mm)
-- tputs (term_mm, 1, outchar);
-+ tputs (term_mm, 1, (void *)outchar);
- }
-
- void
-@@ -538,7 +538,7 @@
- int on;
- {
- if (on && term_ks)
-- tputs (term_ks, 1, outchar);
-+ tputs (term_ks, 1, (void *)outchar);
- else if (!on && term_ke)
-- tputs (term_ke, 1, outchar);
-+ tputs (term_ke, 1, (void *)outchar);
- }