branch: elpa/nix-mode commit afb16299228dc0a69f8222bf0bbc988fe8a33de3 Author: Leon Isenberg <l...@users.noreply.github.com> Commit: Matthew Bauer <mjbaue...@gmail.com>
Fix nix--antiquote-open --- nix-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix-mode.el b/nix-mode.el index 778762c011..41ebc54d4e 100644 --- a/nix-mode.el +++ b/nix-mode.el @@ -149,8 +149,8 @@ (let* ((start (match-beginning 0)) (ps (nix--get-parse-state start)) (string-type (nix--get-string-type ps))) - (when string-type) - (nix--antiquote-open-at start string-type))) + (when string-type + (nix--antiquote-open-at start string-type)))) (defun nix--antiquote-close-open () (let* ((start (match-beginning 0))