~ chicken-core (chicken-5) b1da1ba3898a703fbe6abad7132e9b2d208b4413
commit b1da1ba3898a703fbe6abad7132e9b2d208b4413
Author: Peter Bex <peter@more-magic.net>
AuthorDate: Mon Sep 21 15:27:52 2015 +0200
Commit: Peter Bex <peter@more-magic.net>
CommitDate: Mon Sep 21 15:28:09 2015 +0200
Fix URLencoding of user manual link in index.html.
The non-urlencoded link worked in most browsers, but stricter ones
like "eww" in emacs didn't accept the link.
Fixes #1203 (thanks to Nishant Varma)
diff --git a/index.html b/index.html
index 1ec338b5..1bf2910f 100644
--- a/index.html
+++ b/index.html
@@ -2,7 +2,7 @@
<body>
<center>
<img src="chicken.png">
- <p><a href="The User's Manual.html">The User's Manual</a>
+ <p><a href="The%20User%27s%20Manual.html">The User's Manual</a>
<p>For more information and latest news, visit
<a href="http://wiki.call-cc.org/">the CHICKEN wiki</a>
<blink><span style="color: #f00"><-- CHECK IT OUT!</span></blink>
Trap