summaryrefslogtreecommitdiff
path: root/mu
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2016-12-19 10:49:04 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2016-12-19 10:53:06 +0200
commit9ba3833f715a2aa929d6e51655cf44af1cfe9a2f (patch)
tree4d3ff60a2560e0d0f2fa4f0ba60a554f696ae45e /mu
parent3f1e6e4206f0d8306b650490704a46209d3c1e70 (diff)
downloadmailutils-9ba3833f715a2aa929d6e51655cf44af1cfe9a2f.tar.gz
mailutils-9ba3833f715a2aa929d6e51655cf44af1cfe9a2f.tar.bz2
Bugfixes
* configure.ac: Fallback to guile installation prefix, if 'guile-config info bindir' returns empty string. * doc/texinfo/programs.texi: Minor fix. * mail/mailline.c (ml_readline_init): Don't use obsolete CPPFunction type. * mu/shell.c (mutool_initialize_readline): Likewise. * scheme/sieve2scm.scmi: Fix typo. * sieve/sieve.c (main): Fix initialization of Sieve environment variables "location" and "post".
Diffstat (limited to 'mu')
-rw-r--r--mu/shell.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mu/shell.c b/mu/shell.c
index 276057bf6..ba657132f 100644
--- a/mu/shell.c
+++ b/mu/shell.c
@@ -332,7 +332,8 @@ mutool_initialize_readline (const char *name)
{
/* Allow conditional parsing of the ~/.inputrc file. */
rl_readline_name = (char *) name;
- rl_attempted_completion_function = (CPPFunction *) shell_completion;
+ rl_attempted_completion_function =
+ (rl_completion_func_t*) shell_completion;
rl_getc_function = _shell_getc;
read_history (get_history_file_name ());
}

Return to:

Send suggestions and report system problems to the System administrator.