Index: wp-includes/js/autosave.js
===================================================================
--- wp-includes/js/autosave.js	(revision 22308)
+++ wp-includes/js/autosave.js	(working copy)
@@ -284,7 +284,7 @@
 			doAutoSave = false;
 		} else {
 			if ( 'mce_fullscreen' == ed.id || 'wp_mce_fullscreen' == ed.id )
-				tinymce.get('content').setContent(ed.getContent({format : 'raw'}), {format : 'raw'});
+				tinymce.get('content').setContent(ed.getContent());
 			tinymce.triggerSave();
 		}
 	}
Index: wp-includes/js/mce-view.js
===================================================================
--- wp-includes/js/mce-view.js	(revision 22308)
+++ wp-includes/js/mce-view.js	(working copy)
@@ -544,7 +544,10 @@
 				this.img['class'] = className;
 
 				this.$el.addClass('spinner');
-				this.model.fetch().done( _.bind( this.render, this ) );
+				if ( ! this.model.get('url') )
+					this.model.fetch().done( _.bind( this.render, this ) );
+				else
+					_.defer( _.bind( this.render, this ) );
 			},
 
 			render: function() {
@@ -717,4 +720,4 @@
 			}
 		}
 	});
-}(jQuery));
\ No newline at end of file
+}(jQuery));
Index: wp-includes/js/tinymce/plugins/wpfullscreen/editor_plugin_src.js
===================================================================
--- wp-includes/js/tinymce/plugins/wpfullscreen/editor_plugin_src.js	(revision 22308)
+++ wp-includes/js/tinymce/plugins/wpfullscreen/editor_plugin_src.js	(working copy)
@@ -29,7 +29,7 @@
 				ed.focus();
 				edd = tinyMCE.get( ed.getParam('wp_fullscreen_editor_id') );
 
-				edd.setContent( ed.getContent({format : 'raw'}), {format : 'raw'} );
+				edd.setContent( ed.getContent() );
 			});
 
 			ed.addCommand('wpFullScreenInit', function() {
