Index: default-filters.php
===================================================================
--- default-filters.php	(revision 15275)
+++ default-filters.php	(working copy)
@@ -86,10 +86,6 @@
 	add_filter( $filter, 'esc_html'      );
 }
 
-// Format WordPress
-foreach ( array( 'the_content', 'the_title', 'comment_text' ) as $filter )
-	add_filter( $filter, 'capital_P_dangit' );
-
 // Format titles
 foreach ( array( 'single_post_title', 'single_cat_title', 'single_tag_title', 'single_month_title', 'nav_menu_attr_title', 'nav_menu_description' ) as $filter ) {
 	add_filter( $filter, 'wptexturize' );
Index: deprecated.php
===================================================================
--- deprecated.php	(revision 15275)
+++ deprecated.php	(working copy)
@@ -2547,3 +2547,16 @@
 	_deprecated_function( __FUNCTION__, '3.0', 'term_exists()' );
 	return term_exists( $term, $taxonomy, $parent );
 }
+
+/**
+ * Forever eliminate "Wordpress" from the planet (or at least the little bit we can influence).
+ *
+ * Violating our coding standards for a good function name.
+ *
+ * @since 3.0.0
+ * @deprecated 3.0.1
+ */
+function capital_P_dangit( $text ) {
+	_deprecated_function( __FUNCTION__, '3.0.1' );
+	return str_replace( 'Wordpress', 'WordPress', $text );
+}
Index: formatting.php
===================================================================
--- formatting.php	(revision 15275)
+++ formatting.php	(working copy)
@@ -2818,15 +2818,4 @@
 	return apply_filters('sanitize_text_field', $filtered, $str);
 }
 
-/**
- * Forever eliminate "Wordpress" from the planet (or at least the little bit we can influence).
- *
- * Violating our coding standards for a good function name.
- *
- * @since 3.0.0
- */
-function capital_P_dangit( $text ) {
-       return str_replace( 'Wordpress', 'WordPress', $text );
-}
-
 ?>
