This patch will cause Atahualpa to only load the WordPress 'comment-reply.js' on pages where comments are allowed.
Edit header.php and change line 41 (version 3.7.3) from
HTML Code:
<?php if ( function_exists('wp_list_comments') AND is_singular() ) { wp_enqueue_script( 'comment-reply' ); } ?>
HTML Code:
<?php if ( function_exists('wp_list_comments') AND is_singular() AND (comments_open( $post_id ))) { wp_enqueue_script( 'comment-reply' ); } ?>