~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.cc

  • Committer: Lee Bieber
  • Date: 2011-02-18 22:30:53 UTC
  • mfrom: (2170.5.3 register)
  • mto: This revision was merged to the branch mainline in revision 2183.
  • Revision ID: kalebral@gmail.com-20110218223053-n9u93a91u89zin6p
Merge Olaf - add register keyword

Show diffs side-by-side

added added

removed removed

Lines of Context:
388
388
*/
389
389
static char *get_text(Lex_input_stream *lip, int pre_skip, int post_skip)
390
390
{
391
 
  register unsigned char c,sep;
 
391
  unsigned char c,sep;
392
392
  bool found_escape= false;
393
393
  const CHARSET_INFO * const cs= lip->m_session->charset();
394
394
 
665
665
 
666
666
int lex_one_token(ParserType *yylval, drizzled::Session *session)
667
667
{
668
 
  register unsigned char c= 0; /* Just set to shutup GCC */
 
668
  unsigned char c= 0; /* Just set to shutup GCC */
669
669
  bool comment_closed;
670
670
  int   tokval, result_state;
671
671
  unsigned int length;