io.files.temp.macosx: use find instead of map-find.

char-rename
John Benediktsson 2017-02-07 10:57:37 -08:00
parent c5150307f5
commit 210209ead2
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ CONSTANT: factor-bundle-name "org.factorcode.Factor"
factor-bundle-name append-path ;
: first-existing ( paths -- path )
[ exists? ] map-find nip
[ exists? ] find nip
[ "no user cache directory found" throw ] unless* ; inline
PRIVATE>