diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-07-26 23:08:24 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-07-26 23:15:09 -0400 |
commit | 1589d024d7189cdfa11c5404b3c406c4ef448637 (patch) | |
tree | 7e7143ba79c3948e2c53db86eec5228cfa22bd2b | |
parent | 8d027f025b7e8999c58cb7279448cd27aaae5ebb (diff) |
site: Display unicode arrow when printing asset copy actions.
* haunt/site.scm (build-site): Replace '->' with '→'.
-rw-r--r-- | haunt/site.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haunt/site.scm b/haunt/site.scm index bc90a4e..b1aff44 100644 --- a/haunt/site.scm +++ b/haunt/site.scm @@ -87,7 +87,7 @@ BUILDERS: A list of procedures for building pages from posts" (format #t "writing page '~a'~%" (page-file-name page)) (write-page page build-dir)) ((? asset? asset) - (format #t "copying asset '~a' -> '~a'~%" + (format #t "copying asset '~a' → '~a'~%" (asset-source asset) (asset-target asset)) (install-asset asset build-dir)) |