diff options
author | Ludovic Courtès <ludo@gnu.org> | 2011-01-23 23:43:50 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2011-01-23 23:43:50 +0100 |
commit | bc03d89fa20f3a84743be87a6ad8fb5b08701c93 (patch) | |
tree | 161c807dddaf5a1b7e338d3943763ac76a82b3fd | |
parent | 4325620f6d13bb56abed240528863c38d4e5b3f7 (diff) | |
download | guile-bc03d89fa20f3a84743be87a6ad8fb5b08701c93.tar.gz |
Remove unexpected non-ASCII character.
* module/language/tree-il/fix-letrec.scm: Replace U+2019 with an ASCII
quote. The iconv implementation on FreeBSD would immediately notice
and bail out when reading it under a US-ASCII locale.
-rw-r--r-- | module/language/tree-il/fix-letrec.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/language/tree-il/fix-letrec.scm b/module/language/tree-il/fix-letrec.scm index 3fbe8c093..8d4b2391b 100644 --- a/module/language/tree-il/fix-letrec.scm +++ b/module/language/tree-il/fix-letrec.scm @@ -25,7 +25,7 @@ #:export (fix-letrec!)) ;; For a detailed discussion, see "Fixing Letrec: A Faithful Yet -;; Efficient Implementation of Scheme’s Recursive Binding Construct", by +;; Efficient Implementation of Scheme's Recursive Binding Construct", by ;; Oscar Waddell, Dipanwita Sarkar, and R. Kent Dybvig. (define fix-fold |