~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/readline.cc

  • Committer: Brian Aker
  • Date: 2008-11-26 21:37:50 UTC
  • Revision ID: brian@tangent.org-20081126213750-m96j23htwfymuwlt
Collection of dead code removal

Show diffs side-by-side

added added

removed removed

Lines of Context:
163
163
  /* Shift stuff down. */
164
164
  if (buffer->start_of_line != buffer->buffer)
165
165
  {
166
 
    memmove(buffer->buffer, buffer->start_of_line, (uint) bufbytes);
 
166
    memcpy(buffer->buffer, buffer->start_of_line, (uint) bufbytes);
167
167
    buffer->end=buffer->buffer+bufbytes;
168
168
  }
169
169