emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/nix-mode 7d65288c72 266/500: Fix erroneous use of function


From: ELPA Syncer
Subject: [nongnu] elpa/nix-mode 7d65288c72 266/500: Fix erroneous use of function as variable
Date: Sat, 29 Jan 2022 08:27:12 -0500 (EST)

branch: elpa/nix-mode
commit 7d65288c72684b7eda44a62125b15824c65714ea
Author: Dustin Lacewell <dlacewell@gmail.com>
Commit: Dustin Lacewell <dlacewell@gmail.com>

    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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]