Index: main/grid/model.lisp
===================================================================
--- main/grid/model.lisp	(revision main,26)
+++ main/grid/model.lisp	(revision main,55)
@@ -2,4 +2,8 @@
 
 
+
+(defgeneric rows (grid-data)
+  (:documentation
+   "Returns the number of rows of data."))
 
 #|(defgeneric header-rows (grid-data)
@@ -10,4 +14,8 @@
   (:method (grid-data) 0))|#
 
+(defgeneric columns (grid-data)
+  (:documentation
+   "Returns the number of columns of data."))
+
 #|(defgeneric header-columns (grid-data)
   (:documentation
@@ -17,17 +25,9 @@
   (:method (grid-data) 0))|#
 
-#|(defgeneric column-width (grid-data column)
+(defgeneric column-width (grid-data column)
   (:documentation
    "Returns the width of the column, as the total number of characters
 requested for this column.  The count may be less than the length of
-the maximal item in the column."))|#
-
-(defgeneric rows (grid-data)
-  (:documentation
-   "Returns the number of rows of data."))
-
-(defgeneric columns (grid-data)
-  (:documentation
-   "Returns the number of columns of data."))
+the maximal item in the column."))
 
 (defgeneric item (grid-data row column)
