Index: wp-includes/comment-template.php
===================================================================
--- wp-includes/comment-template.php	(revision 17563)
+++ wp-includes/comment-template.php	(working copy)
@@ -593,11 +593,12 @@
  * @uses $comment
  *
  * @param int $comment_ID The ID of the comment for which to get the text. Optional.
+ * @param array $args Formatting options passed into, for example, wp_list_comments. Optional. 
  * @return string The comment content
  */
-function get_comment_text( $comment_ID = 0 ) {
+function get_comment_text( $comment_ID = 0, $args = null ) {
 	$comment = get_comment( $comment_ID );
-	return apply_filters( 'get_comment_text', $comment->comment_content, $comment );
+	return apply_filters( 'get_comment_text', $comment->comment_content, $comment, $args );
 }
 
 /**
@@ -608,10 +609,11 @@
  * @uses get_comment_text() Gets the comment content
  *
  * @param int $comment_ID The ID of the comment for which to print the text. Optional.
+ * @param array $args Formatting options passed into, for example, wp_list_comments. Optional. 
  */
-function comment_text( $comment_ID = 0 ) {
+function comment_text( $comment_ID = 0, $args ) {
 	$comment = get_comment( $comment_ID );
-	echo apply_filters( 'comment_text', get_comment_text( $comment_ID ), $comment );
+	echo apply_filters( 'comment_text', get_comment_text( $comment_ID , $args ), $comment, $args );
 }
 
 /**
@@ -1365,7 +1367,7 @@
 			?>
 		</div>
 
-		<?php comment_text() ?>
+		<?php comment_text( get_comment_id(), array_merge( $args, array('add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth']))  ) ?>
 
 		<div class="reply">
 		<?php comment_reply_link(array_merge( $args, array('add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth']))) ?>
