Index: wp-includes/default-filters.php
===================================================================
--- wp-includes/default-filters.php	(revision 13398)
+++ wp-includes/default-filters.php	(working copy)
@@ -169,7 +169,7 @@
 
 // Actions
 add_action( 'wp_head',             'wp_enqueue_scripts',            1     );
-add_action( 'wp_head',             'feed_links',                    3     );
+add_action( 'wp_head',             'feed_links',                    2     );
 add_action( 'wp_head',             'feed_links_extra',              3     );
 add_action( 'wp_head',             'rsd_link'                             );
 add_action( 'wp_head',             'wlwmanifest_link'                     );
Index: wp-includes/deprecated.php
===================================================================
--- wp-includes/deprecated.php	(revision 13398)
+++ wp-includes/deprecated.php	(working copy)
@@ -2414,13 +2414,20 @@
 }
 
 /**
- * Enable automatic general feed link outputting.
+ * Enable/disable automatic general feed link outputting.
  *
  * @since 2.8.0
  * @deprecated 3.0.0
  * @deprecated Use add_theme_support( 'automatic-feed-links' )
+ *
+ * @param boolean $add Optional, default is true. Add or remove links. Defaults to true.
  */
-function automatic_feed_links() {
+function automatic_feed_links( $add = true ) {
 	_deprecated_function( __FUNCTION__, '3.0', "add_theme_support( 'automatic-feed-links' )" );
-	add_theme_support( 'automatic-feed-links' );
+
+	if ( $add )
+		add_theme_support( 'automatic-feed-links' );
+	else {
+		remove_action( 'wp_head', 'feed_links_extra', 3 ); // Just do this yourself in 3.0+
+	}
 }
\ No newline at end of file
