Index: wp-includes/default-filters.php
===================================================================
--- wp-includes/default-filters.php	(revision 17358)
+++ wp-includes/default-filters.php	(working copy)
@@ -240,7 +240,7 @@
 add_action( 'plugins_loaded',             'wp_maybe_load_widgets',    0    );
 add_action( 'plugins_loaded',             'wp_maybe_load_embeds',     0    );
 add_action( 'shutdown',                   'wp_ob_end_flush_all',      1    );
-add_action( 'pre_post_update',            'wp_save_post_revision'          );
+add_action( 'pre_post_update',            'wp_save_post_revision',   10, 2 );
 add_action( 'publish_post',               '_publish_post_hook',       5, 1 );
 add_action( 'save_post',                  '_save_post_hook',          5, 2 );
 add_action( 'transition_post_status',     '_transition_post_status',  5, 3 );
Index: wp-includes/post.php
===================================================================
--- wp-includes/post.php	(revision 17358)
+++ wp-includes/post.php	(working copy)
@@ -2533,7 +2533,7 @@
 	$where = array( 'ID' => $post_ID );
 
 	if ( $update ) {
-		do_action( 'pre_post_update', $post_ID );
+		do_action( 'pre_post_update', $post_ID, $data );
 		if ( false === $wpdb->update( $wpdb->posts, $data, $where ) ) {
 			if ( $wp_error )
 				return new WP_Error('db_update_error', __('Could not update post in the database'), $wpdb->last_error);
@@ -4654,7 +4654,7 @@
  * @param int $post_id The ID of the post to save as a revision.
  * @return mixed Null or 0 if error, new revision ID, if success.
  */
-function wp_save_post_revision( $post_id ) {
+function wp_save_post_revision( $post_id, $new_data = null ) {
 	// We do autosaves manually with wp_create_post_autosave()
 	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
 		return;
@@ -4668,6 +4668,19 @@
 
 	if ( !post_type_supports($post['post_type'], 'revisions') )
 		return;
+		
+	// if new data is supplied, check that it is different from last saved revision
+	if( is_array( $new_data ) ) {
+		$post_has_changed = false;
+		foreach( array_keys( _wp_post_revision_fields() ) as $field ) {
+			if( normalize_whitespace( $new_data[$field] ) != normalize_whitespace( $post[$field] ) ) {
+				$post_has_changed = true;
+				break;
+			}
+		}
+		if( ! $post_has_changed )
+			return;
+	}
 
 	$return = _wp_put_post_revision( $post );
 
