branch: externals/phps-mode commit b56a15ce645d396eee0f6b63ab6f7dcb8257dacb Author: Christian Johansson <christ...@cvj.se> Commit: Christian Johansson <christ...@cvj.se>
Removed debugging output, updated todo items --- README.md | 3 ++- phps-mode-lexer.el | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3e75bb8..591df05 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,11 @@ An Emacs major mode for PHP scripting language which aims at making a full seman * Flycheck support (100%) * Syntax coloring based on lexer tokens (100%) * PSR based indentation based on lexer tokens (100%) -* Lexer based on official PHP re2c lexer (90%) +* Lexer based on official PHP re2c lexer (100%) * Incremental lexer and syntax coloring after buffer changes (75%) * Wisent LALR parser based on official PHP yacc parser automatically converted (50%) * Full integration with Emacs Semantic subsystem (30%) +* GPLv3 license (0%) * Imenu support (0%) * Flymake support (0%) * PSR-2 auto-formatting tool based on lexer tokens (0%) diff --git a/phps-mode-lexer.el b/phps-mode-lexer.el index 49dda4c..0581bd4 100644 --- a/phps-mode-lexer.el +++ b/phps-mode-lexer.el @@ -914,7 +914,7 @@ (phps-mode-lexer-RETURN_TOKEN data start end)))) ((looking-at phps-mode-lexer-LABEL) - (message "Adding T_STRING from %s to %s" (match-beginning 0) (match-end 0)) + ;; (message "Adding T_STRING from %s to %s" (match-beginning 0) (match-end 0)) (phps-mode-lexer-RETURN_TOKEN 'T_STRING (match-beginning 0) (match-end 0))) ((looking-at phps-mode-lexer-TOKENS)