Index: unk/aux/cocotron/win32/cocotron/cocotron-r122df7fd4c40.patch
===================================================================
--- /trunk/aux/cocotron/win32/cocotron/cocotron-r122df7fd4c40.patch	(revision 14610)
+++ 	(revision )
@@ -1,67 +1,0 @@
-diff -r 122df7fd4c40 AppKit/NSApplication.m
---- a/AppKit/NSApplication.m	Sun Dec 19 15:25:35 2010 -0500
-+++ b/AppKit/NSApplication.m	Sun Dec 19 16:18:10 2010 -0500
-@@ -415,6 +415,10 @@
-        needsUntitled = [_delegate applicationShouldOpenUntitledFile: self];
-    }
- 
-+   if(needsUntitled && _delegate && [_delegate respondsToSelector: @selector(applicationOpenUntitledFile:)]) {
-+     needsUntitled = ![_delegate applicationOpenUntitledFile: self];
-+   }
-+
-    if(needsUntitled && controller && ![controller documentClassForType:[controller defaultType]]) {
-        needsUntitled = NO;
-    }
-@@ -477,11 +481,17 @@
- 
- -(void)run {
-     
--   NSAutoreleasePool *pool=[NSAutoreleasePool new];
--   [self finishLaunching];
--   [pool release];
--   
--   _isRunning=YES;
-+  static BOOL didlaunch = NO;
-+  NSAutoreleasePool *pool;
-+
-+  _isRunning=YES;
-+
-+  if (!didlaunch) {
-+    didlaunch = YES;
-+    pool=[NSAutoreleasePool new];
-+    [self finishLaunching];
-+    [pool release];
-+  }
-    
-    do {
-        pool = [NSAutoreleasePool new];
-diff -r 122df7fd4c40 AppKit/NSDocument.m
---- a/AppKit/NSDocument.m	Sun Dec 19 15:25:35 2010 -0500
-+++ b/AppKit/NSDocument.m	Sun Dec 19 16:18:10 2010 -0500
-@@ -21,6 +21,8 @@
- 
- @implementation NSDocument
- 
-+static int untitled_document_number = 0;
-+
- +(NSArray *)readableTypes {
-    int             i;
-    NSArray        *knownDocTypes = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleDocumentTypes"];
-@@ -98,7 +100,7 @@
-       _fileURL=nil;
-       _fileType=nil;
-       _changeCount=0;
--      _untitledNumber=0;
-+      _untitledNumber=untitled_document_number++;
-       _hasUndoManager=YES;
-       _activeEditors=[NSMutableArray new];
-     }
-@@ -340,7 +342,7 @@
- {
-   if(_fileURL==nil) 
-     {
--      if(_untitledNumber > 1)
-+      if(_untitledNumber != 0)
-         return [NSString stringWithFormat:@"Untitled %d", _untitledNumber];
-       else
-         return @"Untitled";
