Skip to content
Snippets Groups Projects
Commit bf655708 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

In file-stamp cache, accept NIL as filename.

parent ee153a0b
No related branches found
No related tags found
No related merge requests found
......@@ -59,6 +59,7 @@
(set-asdf-cache-entry `(get-file-stamp ,namestring) (list stamp))))
(defun get-file-stamp (file)
(let ((namestring (normalize-namestring file)))
(do-asdf-cache `(get-file-stamp ,namestring) (compute-file-stamp namestring)))))
(when file
(let ((namestring (normalize-namestring file)))
(do-asdf-cache `(get-file-stamp ,namestring) (compute-file-stamp namestring))))))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment