~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.c

  • Committer: Monty Taylor
  • Date: 2008-07-31 04:06:46 UTC
  • mto: (202.3.5 gettextize)
  • mto: This revision was merged to the branch mainline in revision 243.
  • Revision ID: monty@inaugust.com-20080731040646-hz7eomhx57p0eapv
Un-merged a bad readline version workaround.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2212
2212
                        int end __attribute__((unused)))
2213
2213
{
2214
2214
  if (!status.batch && !quick)
2215
 
#ifdef HAVE_DECL_COMPLETION_MATCHES
2216
 
    return completion_matches(text, new_command_generator);
2217
 
#else
2218
2215
    return rl_completion_matches(text, new_command_generator);
2219
 
#endif
2220
2216
  else
2221
2217
    return (char**) 0;
2222
2218
}