diff options
| author | franck cuny <franck.cuny@gmail.com> | 2019-02-18 13:14:37 -0800 |
|---|---|---|
| committer | franck cuny <franck.cuny@gmail.com> | 2019-02-18 13:14:37 -0800 |
| commit | ff7de3a3ed8fb3d9e37e93c02af80494a9cd3423 (patch) | |
| tree | 79d7122397efc79c55e9ca167fc08f94bafd9e76 | |
| parent | Cache list of targets. (diff) | |
| download | pants.el-main.tar.gz | |
Was calling a non-existing function when trying to read from the
cache.
| -rw-r--r-- | pants.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
