- Renamed Lexer2 to Lexer, it looks good enough to assume control.
This commit is contained in:
Paul Beckingham 2015-02-22 17:46:22 -05:00
parent e1c0d5b130
commit 745aad0d27
15 changed files with 553 additions and 553 deletions

View file

@ -34,7 +34,7 @@
#include <strings.h>
#include <ctype.h>
#include <Context.h>
#include <Lexer2.h>
#include <Lexer.h>
#include <math.h>
#include <util.h>
#include <text.h>
@ -473,7 +473,7 @@ bool nontrivial (const std::string& input)
std::string::size_type i = 0;
int character;
while ((character = utf8_next_char (input, i)))
if (! Lexer2::isWhitespace (character))
if (! Lexer::isWhitespace (character))
return true;
return false;
@ -495,7 +495,7 @@ bool noSpaces (const std::string& input)
std::string::size_type i = 0;
int character;
while ((character = utf8_next_char (input, i)))
if (Lexer2::isWhitespace (character))
if (Lexer::isWhitespace (character))
return false;
return true;