branch: elpa/nix-mode
commit 1dd112e5cfa294c88ddf04cdbe6a90cb1af7bde5
Author: Dustin Lacewell <[email protected]>
Commit: Dustin Lacewell <[email protected]>

    Fix function used as variable
---
 nix-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nix-mode.el b/nix-mode.el
index 32ed0428a1..759c85f678 100644
--- a/nix-mode.el
+++ b/nix-mode.el
@@ -414,7 +414,7 @@ STRING-TYPE type of string based off of Emacs syntax table 
types"
         (cond
          ((looking-at (nix-mode-quotes-regexp))
           ;; skip over strings entirely
-          (re-search-backward nix-mode-quotes-regexp nil t))
+          (re-search-backward (nix-mode-quotes-regexp) nil t))
          ((looking-at (nix-mode-ends-regexp))
           ;; count the matched end
           ;; this means we expect to find at least one more cap

Reply via email to