comment_edit_page($comment)Page callback for comment editing.
modules/comment/comment.module, line 1695
<?php
function comment_edit_page($comment) {
drupal_set_title(t('Edit comment %comment', array('%comment' => $comment->subject)), PASS_THROUGH);
return drupal_get_form('comment_form', $comment);
}
?>