~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.c

  • Committer: Monty Taylor
  • Date: 2008-07-30 22:49:08 UTC
  • mto: (202.3.5 gettextize)
  • mto: This revision was merged to the branch mainline in revision 243.
  • Revision ID: monty@inaugust.com-20080730224908-k1iq7gyxpcdbfxs2
Fixed the previous merge. (since I suck)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2196
2196
  rl_readline_name= (char *)name;
2197
2197
 
2198
2198
  /* Tell the completer that we want a crack first. */
2199
 
  rl_attempted_completion_function= (typeof rl_attempted_completion_function)&new_mysql_completion;
2200
 
  rl_completion_entry_function= (typeof rl_completion_entry_function)&no_completion;
 
2199
  rl_attempted_completion_function= (rl_completion_func_t*)&mysql_completion;
 
2200
  rl_completion_entry_function= (rl_compentry_func_t*)&no_completion;
2201
2201
}
2202
2202
 
2203
2203