From ff7de3a3ed8fb3d9e37e93c02af80494a9cd3423 Mon Sep 17 00:00:00 2001 From: franck cuny Date: Mon, 18 Feb 2019 13:14:37 -0800 Subject: Fix name of a function. Was calling a non-existing function when trying to read from the cache. --- pants.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pants.el b/pants.el index 5ab681c..4ae26e2 100644 --- a/pants.el +++ b/pants.el @@ -224,7 +224,7 @@ (let ((cache-targets (pants--get-path-cached-targets current-build-file))) (when (file-newer-than-file-p (format "%sBUILD" (pants--get-build-file-for-current-buffer)) cache-targets) (pants--populate-cache-targets cache-targets current-build-file)) - (read-targets-from-cache cache-targets)))) + (pants--read-targets-from-cache cache-targets current-build-file)))) (defun pants--replace-build-buffer (buffer new-content) (with-current-buffer buffer -- cgit 1.4.1