X-Git-Url: https://git.wh0rd.org/?p=dump.git;a=blobdiff_plain;f=restore%2Finteractive.c;h=f252fc825f065db75cdf1d2213e085c81936487f;hp=473c11301340f575b09f677805b0379c5c6e3eb2;hb=bcecd677f63905d4254703c0046e3f03eeff9793;hpb=27305a35ef61d643d24c067a455c15f7e041a70e diff --git a/restore/interactive.c b/restore/interactive.c index 473c113..f252fc8 100644 --- a/restore/interactive.c +++ b/restore/interactive.c @@ -41,7 +41,7 @@ #ifndef lint static const char rcsid[] = - "$Id: interactive.c,v 1.22 2002/02/04 12:07:38 stelian Exp $"; + "$Id: interactive.c,v 1.23 2002/02/25 13:54:53 stelian Exp $"; #endif /* not lint */ #include @@ -836,6 +836,10 @@ onintr(int signo) #if HAVE_READLINE +#if !HAVE_READLINE_RLCM +#define rl_completion_matches completion_matches +#endif + /* A static variable for holding the line. */ static char *line_read = NULL; @@ -1024,7 +1028,9 @@ initialize_readline(void) rl_readline_name = "dump"; rl_attempted_completion_function = restore_completion; rl_completion_entry_function = NULL; +#if HAVE_READLINE_CAC /* compile with readline 2.0 */ rl_completion_append_character = '\0'; +#endif rl_instream = terminal; }