From 9ecd740ec9963e5773f8335f988978ee5dd28bc0 Mon Sep 17 00:00:00 2001 From: claytharrison Date: Tue, 25 Mar 2025 21:38:57 +0100 Subject: [PATCH] Address changes --- micromamba.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/micromamba.el b/micromamba.el index e630c62..69c7268 100644 --- a/micromamba.el +++ b/micromamba.el @@ -196,9 +196,9 @@ Returns an alist with the following keys: "Pull the `name` property out of the YAML file at FILENAME." (when filename (let ((filename (file-truename filename))) - (or (unless (file-has-changed-p filename)) - (cdr (assoc filename micromamba--yml-cache)) - (setf (alist-get filename micromamba--yml-cache) + (or (unless (file-has-changed-p filename) + (cdr (assoc filename micromamba--yml-cache))) + (setf (alist-get filename micromamba--yml-cache nil nil #'equal) (micromamba--get-name-from-env-yml-contents (micromamba--read-file-into-string filename)))))))