Index: NSGeometry.h
===================================================================
--- NSGeometry.h	(revision 23200)
+++ NSGeometry.h	(revision 22472)
@@ -18,8 +18,7 @@
  * 
  * You should have received a copy of the GNU Library General Public
  * License along with this library; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- * MA 02111 USA. */ 
+ * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA. */ 
 
 #ifndef __NSGeometry_h_GNUSTEP_BASE_INCLUDE
 #define __NSGeometry_h_GNUSTEP_BASE_INCLUDE
@@ -118,20 +117,21 @@
 }
 </example>
  */
-typedef enum _NSRectEdge
+typedef enum _NSRectEdge NSRectEdge;
+enum _NSRectEdge
 {
   NSMinXEdge,
   NSMinYEdge,
   NSMaxXEdge,
   NSMaxYEdge
-} NSRectEdge;
+};
 
 /** Point at 0,0 */
-static const NSPoint NSZeroPoint __attribute__((unused)) = {0.0,0.0};
+static const NSPoint NSZeroPoint __attribute__((unused));  /* Zero point. */
 /** Zero-size rectangle at 0,0 */
-static const NSRect NSZeroRect __attribute__((unused)) = {{0.0,0.0},{0.0,0.0}};
+static const NSRect NSZeroRect __attribute__((unused));    /* Zero rectangle. */
 /** Zero size */
-static const NSSize NSZeroSize __attribute__((unused)) = {0.0,0.0};
+static const NSSize NSZeroSize __attribute__((unused));    /* Zero size. */
 
 /**** Function Prototypes ****************************************************/
 
