In template_functions.php, in function comment_author_link, I changed
$url = preg_replace('|[^a-z0-9-_.?#=&;,/:]|i', '', $url);
to
$url = preg_replace('|[^a-z0-9-_.?#~=&;,/:]|i', '', $url);
to save tildes in comment author URIs like http://mysite/~user
Hope this is a useable suggestion.