Index: wp-includes/formatting.php
===================================================================
--- wp-includes/formatting.php	(revision 10980)
+++ wp-includes/formatting.php	(working copy)
@@ -1627,6 +1627,7 @@
  * @return string The excerpt.
  */
 function wp_trim_excerpt($text) {
+	$raw_excerpt = $text;
 	if ( '' == $text ) {
 		$text = get_the_content('');
 
@@ -1643,7 +1644,7 @@
 			$text = implode(' ', $words);
 		}
 	}
-	return $text;
+	return apply_filters('wp_trim_excerpt', $text, $raw_excerpt);
 }
 
 /**

