branch: elpa/nix-mode
commit fc68739bec3820e8dc3b5166a996fd46a3b7ba9a
Author: Matthew Justin Bauer <[email protected]>
Commit: GitHub <[email protected]>
Fix syntax error
---
nix-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nix-mode.el b/nix-mode.el
index 067e8d09d4..14e2bf8ca2 100644
--- a/nix-mode.el
+++ b/nix-mode.el
@@ -62,7 +62,7 @@
;; variable assignments
;; warn on upper case variable names
("\\<\\([A-Z_][a-zA-Z0-9_'\-\.]*\\)[ \t]*="
- (1 font-lock-warning-face nil nil) ;; capitalized
+ (1 font-lock-warning-face nil nil)) ;; capitalized
("\\<\\([a-z][a-zA-Z0-9_'\-\.]*\\)[ \t]*="
(1 font-lock-variable-name-face nil nil)) ;; uncapitalized