I played with this a little last night and I got part way there.
function catname() {
foreach((get_the_category()) as $category) {
echo $category->cat_name . ' ';
}}
function next_smart() {
next_post_link('%link', 'Next post in ', TRUE, '');
}
Gives me: Next Post in Events
Unfortunately, the category name is not part of the link.
Any thoughts?