Commit 70f54114 70f541144be11e179b3bf67ccc37fba3c933b911 by Sergey Poznyakoff

Define rl_completion_matches for readline < 4.2

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