diff options
Diffstat (limited to 'src/LexLua.cxx')
-rw-r--r-- | src/LexLua.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/LexLua.cxx b/src/LexLua.cxx index 7f6df070a..169d3f4f8 100644 --- a/src/LexLua.cxx +++ b/src/LexLua.cxx @@ -51,7 +51,8 @@ static inline bool IsLuaOperator(int ch) { ch == '{' || ch == '}' || ch == '~' || ch == '[' || ch == ']' || ch == ';' || ch == '<' || ch == '>' || ch == ',' || - ch == '.' || ch == '^' || ch == '%' || ch == ':') { + ch == '.' || ch == '^' || ch == '%' || ch == ':' || + ch == '#') { return true; } return false; |