summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2002-11-13 09:45:24 +0100
committerMartin Mares <mj@ucw.cz>2002-11-13 09:45:24 +0100
commit59b96d7b4d8a055aa77917099b358cfc7b5e0731 (patch)
treeb08579e95e7e9efa4ac4baf540a1c3f33a843906 /client
parenta19cd811000902facceff5a30facf7dba9cb2095 (diff)
downloadbird-59b96d7b4d8a055aa77917099b358cfc7b5e0731.tar
bird-59b96d7b4d8a055aa77917099b358cfc7b5e0731.zip
Don't use obsolete functions which are no longer declared in the header.
Diffstat (limited to 'client')
-rw-r--r--client/client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/client.c b/client/client.c
index f3b5d69..424e119 100644
--- a/client/client.c
+++ b/client/client.c
@@ -127,7 +127,7 @@ void
input_start_list(void) /* Leave the currently edited line and make space for listing */
{
_rl_move_vert(_rl_vis_botlin);
- crlf();
+ rl_crlf();
}
void
@@ -155,7 +155,7 @@ input_complete(int arg, int key)
break;
default:
complete_flag = 1;
- ding();
+ rl_ding();
}
return 0;
}