]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/alien/libraries/finder/finder.factor
factor: Trim whitespace after ! comments and a few USING: lines that got skipped...
[factor.git] / basis / alien / libraries / finder / finder.factor
index 7483b60488043a0cca1d5350bca0a32f534b3320..78b3a7195550b8c3d3975b077146f0b5ba161a04 100644 (file)
@@ -8,7 +8,7 @@ HOOK: find-library* os ( name -- path/f )
 
 ! Try to find the library from a list, but if it's not found,
 ! try to open a library that is the first name in that list anyway
-! or "library_not_found" as a last resort for better debugging. 
+! or "library_not_found" as a last resort for better debugging.
 : find-library-from-list ( seq -- path/f )
     dup [ find-library* ] map-find drop
     [ nip ] [ ?first "library_not_found" or ] if* ;