branch: elpa/nix-mode
commit 1cda7dabbc0bde58abfdaa3e9358c6395baeb47c
Author: Jakub Piecuch <[email protected]>
Commit: Jakub Piecuch <[email protected]>
Bug fix: replace memq with member
---
nix-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nix-mode.el b/nix-mode.el
index b520a29c32..05f1d75503 100644
--- a/nix-mode.el
+++ b/nix-mode.el
@@ -556,7 +556,7 @@ STRING-TYPE type of string based off of Emacs syntax table
types"
(defun nix-smie--arg-?-p ()
"Whether the question mark at point is part of an argument declaration."
- (memq
+ (member
(nth 2 (progn
(smie-backward-sexp)
(smie-backward-sexp)))