Index: wp-includes/rewrite.php
===================================================================
--- wp-includes/rewrite.php	(revision 20375)
+++ wp-includes/rewrite.php	(working copy)
@@ -483,6 +483,15 @@
 	var $pagination_base = 'page';
 
 	/**
+	 * Comments pagination permalink base.
+	 *
+	 * @since 3.5
+	 * @access private
+	 * @var string
+	 */
+	var $comments_pagination_base = 'comment-page';
+
+	/**
 	 * Feed permalink base.
 	 *
 	 * @since 1.5.0
@@ -1237,7 +1246,7 @@
 		//build a regex to match the trackback and page/xx parts of URLs
 		$trackbackregex = 'trackback/?$';
 		$pageregex = $this->pagination_base . '/?([0-9]{1,})/?$';
-		$commentregex = 'comment-page-([0-9]{1,})/?$';
+		$commentregex = $this->comments_pagination_base . '-([0-9]{1,})/?$';
 
 		//build up an array of endpoint regexes to append => queries to append
 		if ( $endpoints ) {
