branch: externals/phps-mode
commit 2c8f28c9fd5272f1e142e04cc88dd77cc99cef46
Author: Christian Johansson <[email protected]>
Commit: Christian Johansson <[email protected]>
Added docstrings to variables
---
phps-mode-lexer.el | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/phps-mode-lexer.el b/phps-mode-lexer.el
index 6dc8b96..52394f2 100644
--- a/phps-mode-lexer.el
+++ b/phps-mode-lexer.el
@@ -411,11 +411,14 @@
"Skip TOKEN to list with START and END."
)
-(defvar phps-mode-lexer-re2c-matching-body nil)
+(defvar phps-mode-lexer-re2c-matching-body nil
+ "Lambda-expression for longest matching condition.")
-(defvar phps-mode-lexer-re2c-matching-length nil)
+(defvar phps-mode-lexer-re2c-matching-length nil
+ "Length of longest matching condition.")
-(defvar phps-mode-lexer-re2c-matching-data nil)
+(defvar phps-mode-lexer-re2c-matching-data nil
+ "Match data for longest matching condition.")
(defun phps-mode-lexer-re2c-rule (condition body)
"Process rule with CONDITION and BODY."