Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 503954
Collapse All | Expand All

(-)mailutils-2.99.98/mu/shell.c (-1 / +1 lines)
Lines 336-342 mutool_initialize_readline (const char * Link Here
336
{
336
{
337
  /* Allow conditional parsing of the ~/.inputrc file. */
337
  /* Allow conditional parsing of the ~/.inputrc file. */
338
  rl_readline_name = (char *) name;
338
  rl_readline_name = (char *) name;
339
  rl_attempted_completion_function = (CPPFunction *) shell_completion;
339
  rl_attempted_completion_function = shell_completion;
340
  rl_getc_function = _shell_getc;
340
  rl_getc_function = _shell_getc;
341
  read_history (get_history_file_name ());
341
  read_history (get_history_file_name ());
342
}
342
}
(-)mailutils-2.99.98/mail/mailline.c (-1 / +1 lines)
Lines 93-99 ml_readline_init () Link Here
93
93
94
#ifdef WITH_READLINE
94
#ifdef WITH_READLINE
95
  rl_readline_name = "mail";
95
  rl_readline_name = "mail";
96
  rl_attempted_completion_function = (CPPFunction*)ml_command_completion;
96
  rl_attempted_completion_function = ml_command_completion;
97
  rl_getc_function = ml_getc;
97
  rl_getc_function = ml_getc;
98
#endif
98
#endif
99
#ifdef HAVE_SIGACTION
99
#ifdef HAVE_SIGACTION
(-)mailutils-2.99.98/examples/nntpclient.c (-1 / +1 lines)
Lines 163-169 initialize_readline () Link Here
163
  rl_readline_name = (char *) "nntp";
163
  rl_readline_name = (char *) "nntp";
164
164
165
  /* Tell the completer that we want a crack first. */
165
  /* Tell the completer that we want a crack first. */
166
  rl_attempted_completion_function = (CPPFunction *) nntp_completion;
166
  rl_attempted_completion_function = nntp_completion;
167
}
167
}
168
168
169
/* Attempt to complete on the contents of TEXT.  START and END bound the
169
/* Attempt to complete on the contents of TEXT.  START and END bound the

Return to bug 503954