diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2013-04-08 12:56:59 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2013-04-08 12:56:59 +0000 |
commit | fa5bc4b95d1ea172e465ee4186724130cbe16414 (patch) | |
tree | 65d67bec6c1b212301c4745e4c99e18bd1109931 /history.c | |
parent | Merge branch 'feature/sgrmouse' (diff) | |
parent | One more patch for siteconf from [w3m-dev 04464] (diff) | |
download | w3m-fa5bc4b95d1ea172e465ee4186724130cbe16414.tar.gz w3m-fa5bc4b95d1ea172e465ee4186724130cbe16414.zip |
Merge branch 'feature/siteconf'
Diffstat (limited to 'history.c')
-rw-r--r-- | history.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ historyBuffer(Hist *hist) for (item = hist->list->last; item; item = item->prev) { q = html_quote((char *)item->ptr); if (DecodeURL) - p = html_quote(url_unquote_conv((char *)item->ptr, 0)); + p = html_quote(url_decode2((char *)item->ptr, NULL)); else p = q; Strcat_charp(src, "<li><a href=\""); |