Index: NSTableColumn.m
===================================================================
--- NSTableColumn.m	(revision 26071)
+++ NSTableColumn.m	(working copy)
@@ -99,8 +99,8 @@
 - (id)initWithIdentifier: (id)anObject
 {
   self = [super init];
-  _width = 0;
-  _min_width = 0;
+  _width = 100;
+  _min_width = 10;
   _max_width = 100000;
   _is_resizable = YES;
   _is_editable = YES;
@@ -216,7 +216,8 @@
 /**
   Set the min width of the table column, eventually adjusting the
   width of the column if it is smaller than the new min width.  In no
-  way a table column can be made smaller than its min width.  */
+  way a table column can be made smaller than its min width. The 
+  default width is 100. */
 - (void)setMinWidth: (float)minWidth
 {
   _min_width = minWidth;
@@ -227,7 +228,7 @@
 /**
   Return the column's min width.  The column can in no way be resized
   to a width smaller than this min width.  The default min width is
-  zero.  */
+  10.  */
 - (float)minWidth
 {
   return _min_width;
