Index: wp-includes/comment-template.php
===================================================================
--- wp-includes/comment-template.php	(revision 20713)
+++ wp-includes/comment-template.php	(working copy)
@@ -1544,6 +1544,7 @@
 		'title_reply_to'       => __( 'Leave a Reply to %s' ),
 		'cancel_reply_link'    => __( 'Cancel reply' ),
 		'label_submit'         => __( 'Post Comment' ),
+		'submit_button'        => '<p class="form-submit"><input name="submit" type="submit" id="%1$s" value="%2$s" /></p>',
 	);
 
 	$args = wp_parse_args( $args, apply_filters( 'comment_form_defaults', $defaults ) );
@@ -1574,10 +1575,8 @@
 						<?php endif; ?>
 						<?php echo apply_filters( 'comment_form_field_comment', $args['comment_field'] ); ?>
 						<?php echo $args['comment_notes_after']; ?>
-						<p class="form-submit">
-							<input name="submit" type="submit" id="<?php echo esc_attr( $args['id_submit'] ); ?>" value="<?php echo esc_attr( $args['label_submit'] ); ?>" />
-							<?php comment_id_fields( $post_id ); ?>
-						</p>
+						<?php echo apply_filters( 'comment_form_submit_button', sprintf( $args['submit_button'], esc_attr( $args['id_submit'] ), esc_attr( $args['label_submit'] ) ) ); ?>
+						<?php comment_id_fields( $post_id ); ?>
 						<?php do_action( 'comment_form', $post_id ); ?>
 					</form>
 				<?php endif; ?>
