Commit 70f54114 70f541144be11e179b3bf67ccc37fba3c933b911 by Sergey Poznyakoff

Define rl_completion_matches for readline < 4.2

1 parent 2148cb11
......@@ -99,3 +99,8 @@
#else
# define MU_PATH_MAILDIR _PATH_MAILDIR "/"
#endif
/* Newer versions of readline have rl_completion_matches */
#ifndef HAVE_RL_COMPLETION_MATCHES
# define rl_completion_matches completion_matches
#endif
......