branch: elpa/nix-mode
commit 7d65288c72684b7eda44a62125b15824c65714ea
Author: Dustin Lacewell <[email protected]>
Commit: Dustin Lacewell <[email protected]>
Fix erroneous use of function as variable
---
nix-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nix-mode.el b/nix-mode.el
index 9ef8fb0b79..32ed0428a1 100644
--- a/nix-mode.el
+++ b/nix-mode.el
@@ -398,7 +398,7 @@ STRING-TYPE type of string based off of Emacs syntax table
types"
(defun nix-mode-search-backward ()
"Search backward for items of interest regarding indentation."
- (re-search-backward nix-mode-combined-regexp nil t))
+ (re-search-backward (nix-mode-combined-regexp) nil t))
(defun nix-indent-expression-start ()
(let* ((ends 0)