branch: elpa/nix-mode
commit 1e58da56ac3830cd07deaf81b151817785ad3a23
Author: Leon Isenberg <[email protected]>
Commit: Matthew Bauer <[email protected]>
Fix var name nix-err-msg-re
---
nix-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nix-mode.el b/nix-mode.el
index 5affe9a1d0..8153293763 100644
--- a/nix-mode.el
+++ b/nix-mode.el
@@ -186,7 +186,7 @@ If a close brace `}' ends an antiquote, the next character
begins a string."
(insert output)
(goto-char (point-min))
(let ((errs '()))
- (while (search-forward-regexp err-msg-re nil t 1)
+ (while (search-forward-regexp nix-err-msg-re nil t 1)
(let* ((file (match-string 2))
(line (string-to-number (match-string 3)))
(col (string-to-number (match-string 4)))