branch: elpa/lua-mode
commit 91b59745a89e6ae90ec7efed3edbcb8b5bf993ab
Author: Leonardo Etcheverry <[email protected]>
Commit: Leonardo Etcheverry <[email protected]>
minor style fixes
---
lua-mode.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lua-mode.el b/lua-mode.el
index 3c90f55..588b7e3 100644
--- a/lua-mode.el
+++ b/lua-mode.el
@@ -342,7 +342,7 @@ The following keys are bound:
(modify-syntax-entry ?^ ".")
;; This might be better as punctuation, as for C, but this way you
;; can treat table index as symbol.
- (modify-syntax-entry ?. "_") ; e.g. `io.string'
+ (modify-syntax-entry ?. "_") ; e.g. `io.string'
(modify-syntax-entry ?> ".")
(modify-syntax-entry ?< ".")
(modify-syntax-entry ?= ".")
@@ -565,7 +565,7 @@ matching keyword that ends the block, and vice versa."
(let ((position (lua-goto-matching-block-token)))
(if (and (not position)
(not noreport))
- (error "Not on a block control keyword or brace.")
+ (error "Not on a block control keyword or brace")
position)))
(defun lua-forward-line-skip-blanks (&optional back)