Index: wp-content/themes/twentyeleven/header.php
===================================================================
--- wp-content/themes/twentyeleven/header.php	(revision 23695)
+++ wp-content/themes/twentyeleven/header.php	(working copy)
@@ -46,18 +46,11 @@
 
 	?></title>
 <link rel="profile" href="http://gmpg.org/xfn/11" />
-<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
 <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
 <!--[if lt IE 9]>
 <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
 <![endif]-->
 <?php
-	/* We add some JavaScript to pages with the comment form
-	 * to support sites with threaded comments (when in use).
-	 */
-	if ( is_singular() && get_option( 'thread_comments' ) )
-		wp_enqueue_script( 'comment-reply' );
-
 	/* Always have wp_head() just before the closing </head>
 	 * tag of your theme, or you will break many plugins, which
 	 * generally use this hook to add elements to <head> such
Index: wp-content/themes/twentyeleven/functions.php
===================================================================
--- wp-content/themes/twentyeleven/functions.php	(revision 23695)
+++ wp-content/themes/twentyeleven/functions.php	(working copy)
@@ -327,6 +327,27 @@
 endif; // twentyeleven_admin_header_image
 
 /**
+ * Enqueue scripts and styles.
+ *
+ * Hooked on priority 0 to make sure they are enqueued prior to dependent
+ * scripts/styles. This is only necessary because they were previously enqueued
+ * prior to wp_head() running, and we want to provide maximum
+ * backwards compatibility.
+ *
+ * @since Twenty Eleven 1.6
+ */
+function twentyeleven_scripts() {
+	wp_enqueue_style( 'twentyeleven', get_stylesheet_uri() );
+
+	/* We add some JavaScript to pages with the comment form
+	 * to support sites with threaded comments (when in use).
+	 */
+	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) )
+		wp_enqueue_script( 'comment-reply' );
+}
+add_action( 'wp_enqueue_scripts', 'twentyeleven_scripts', 0 );
+
+/**
  * Sets the post excerpt length to 40 words.
  *
  * To override this length in a child theme, remove the filter and add your own
Index: wp-content/themes/twentyten/functions.php
===================================================================
--- wp-content/themes/twentyten/functions.php	(revision 23695)
+++ wp-content/themes/twentyten/functions.php	(working copy)
@@ -216,6 +216,27 @@
 endif;
 
 /**
+ * Enqueue scripts and styles.
+ *
+ * Hooked on priority 0 to make sure they are enqueued prior to dependent
+ * scripts/styles. This is only necessary because they were previously enqueued
+ * prior to wp_head() running, and we want to provide maximum
+ * backwards compatibility.
+ *
+ * @since Twenty Ten 1.6
+ */
+function twentyten_scripts() {
+	wp_enqueue_style( 'twentyten', get_stylesheet_uri() );
+
+	/* We add some JavaScript to pages with the comment form
+	 * to support sites with threaded comments (when in use).
+	 */
+	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) )
+		wp_enqueue_script( 'comment-reply' );
+}
+add_action( 'wp_enqueue_scripts', 'twentyten_scripts', 0 );
+
+/**
  * Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link.
  *
  * To override this in a child theme, remove the filter and optionally add
Index: wp-content/themes/twentyten/header.php
===================================================================
--- wp-content/themes/twentyten/header.php	(revision 23695)
+++ wp-content/themes/twentyten/header.php	(working copy)
@@ -34,15 +34,8 @@
 
 	?></title>
 <link rel="profile" href="http://gmpg.org/xfn/11" />
-<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
 <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
 <?php
-	/* We add some JavaScript to pages with the comment form
-	 * to support sites with threaded comments (when in use).
-	 */
-	if ( is_singular() && get_option( 'thread_comments' ) )
-		wp_enqueue_script( 'comment-reply' );
-
 	/* Always have wp_head() just before the closing </head>
 	 * tag of your theme, or you will break many plugins, which
 	 * generally use this hook to add elements to <head> such
