1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
$NetBSD: patch-ad,v 1.3 1999/07/13 00:56:13 jlam Exp $
--- terminal.c.orig Thu May 14 10:54:16 1998
+++ terminal.c Tue Jul 6 05:23:35 1999
@@ -478,7 +478,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++)
@@ -492,7 +492,7 @@
{
#if defined (NEW_TTY_DRIVER)
if (term_cr)
- tputs (term_cr, 1, _rl_output_character_function);
+ tputs (term_cr, 1, (void *)_rl_output_character_function);
#endif /* NEW_TTY_DRIVER */
putc ('\n', _rl_out_stream);
return 0;
@@ -513,7 +513,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 */
@@ -541,7 +541,7 @@
_rl_enable_meta_key ()
{
if (term_has_meta && term_mm)
- tputs (term_mm, 1, _rl_output_character_function);
+ tputs (term_mm, 1, (void *)_rl_output_character_function);
}
void
@@ -549,7 +549,7 @@
int on;
{
if (on && term_ks)
- tputs (term_ks, 1, _rl_output_character_function);
+ tputs (term_ks, 1, (void *)_rl_output_character_function);
else if (!on && term_ke)
- tputs (term_ke, 1, _rl_output_character_function);
+ tputs (term_ke, 1, (void *)_rl_output_character_function);
}
|