comment_save_action($comment)Saves a comment.
modules/comment/comment.module, line 2480
<?php
function comment_save_action($comment) {
comment_save($comment);
watchdog('action', 'Saved comment %title', array('%title' => $comment->subject));
}
?>