Mercurial > hg > xemacs-beta
diff src/EmacsShell-sub.c @ 398:74fd4e045ea6 r21-2-29
Import from CVS: tag r21-2-29
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:13:30 +0200 |
parents | c5d627a313b1 |
children | 697ef44129c6 |
line wrap: on
line diff
--- a/src/EmacsShell-sub.c Mon Aug 13 11:12:06 2007 +0200 +++ b/src/EmacsShell-sub.c Mon Aug 13 11:13:30 2007 +0200 @@ -137,26 +137,32 @@ the default values for X and Y, for no obvious reason. This causes Shell to indicate that the defaults of (0,0) were program-specified, instead of letting the WM do what it wants. */ - {XtNx, XtCPosition, XtRPosition, sizeof(Position), - coreoffset (x), XtRImmediate, (XtPointer)BIGSIZE}, - {XtNy, XtCPosition, XtRPosition, sizeof(Position), - coreoffset (y), XtRImmediate, (XtPointer)BIGSIZE}, + { XtNx, XtCPosition, + XtRPosition, sizeof (Position), + coreoffset (x), XtRImmediate, (XtPointer)BIGSIZE }, + { XtNy, XtCPosition, + XtRPosition, sizeof (Position), + coreoffset (y), XtRImmediate, (XtPointer)BIGSIZE }, #endif - { XtNwidthCells, XtCWidthCells, XtRInt, sizeof(int), - offset (width_cells), XtRImmediate, (XtPointer)0}, - { XtNheightCells, XtCHeightCells, XtRInt, sizeof(int), - offset (height_cells), XtRImmediate, (XtPointer)0}, - { XtNminWidthCells, XtCMinWidthCells, XtRInt, sizeof(int), - offset (min_width_cells), XtRImmediate, (XtPointer)0}, - { XtNminHeightCells, XtCMinHeightCells, XtRInt, sizeof(int), - offset (min_height_cells), XtRImmediate, (XtPointer)0}, + { XtNwidthCells, XtCWidthCells, + XtRInt, sizeof (int), + offset (width_cells), XtRImmediate, (XtPointer)0 }, + { XtNheightCells, XtCHeightCells, + XtRInt, sizeof (int), + offset (height_cells), XtRImmediate, (XtPointer)0 }, + { XtNminWidthCells, XtCMinWidthCells, + XtRInt, sizeof (int), + offset (min_width_cells), XtRImmediate, (XtPointer)0 }, + { XtNminHeightCells, XtCMinHeightCells, + XtRInt, sizeof (int), + offset (min_height_cells), XtRImmediate, (XtPointer)0 }, }; static CompositeClassExtensionRec compositeClassExtRec = { NULL, NULLQUARK, XtCompositeExtensionVersion, - sizeof(CompositeClassExtensionRec), + sizeof (CompositeClassExtensionRec), TRUE, }; @@ -164,7 +170,7 @@ NULL, NULLQUARK, XtShellExtensionVersion, - sizeof(ShellClassExtensionRec), + sizeof (ShellClassExtensionRec), RootGeometryManager }; @@ -174,7 +180,7 @@ */ /* superclass */ (WidgetClass) &SUPERCLASS_CLASS_REC, /* class_name */ (String) EMACS_SHELL_CLASS_NAME, - /* size */ sizeof(EMACS_SHELL_REC), + /* size */ sizeof (EMACS_SHELL_REC), /* Class Initializer */ NULL, /* class_part_initialize*/ NULL, /* XtInheritClassPartInitialize, */ /* Class init'ed ? */ FALSE,