dtwm: remove register keyword
authorJon Trulson <jon@radscan.com>
Wed, 27 Jun 2018 23:54:24 +0000 (17:54 -0600)
committerJon Trulson <jon@radscan.com>
Thu, 28 Jun 2018 04:20:34 +0000 (22:20 -0600)
13 files changed:
cde/programs/dtwm/Clock.c
cde/programs/dtwm/WmColormap.c
cde/programs/dtwm/WmFeedback.c
cde/programs/dtwm/WmFunction.c
cde/programs/dtwm/WmGraphics.c
cde/programs/dtwm/WmParse.c
cde/programs/dtwm/WmResCvt.c
cde/programs/dtwm/WmResParse.c
cde/programs/dtwm/WmResource.c
cde/programs/dtwm/WmWinInfo.c
cde/programs/dtwm/WmWinList.c
cde/programs/dtwm/examples/occupy/occupy.c
cde/programs/dtwm/examples/wsinfo/wsinfo.c

index 990e4939e30101835517f480dc6f82b3f91a6511..5dc7785dd7de6d998f0b0f3c92c0a6f9d52a7e13 100644 (file)
@@ -325,8 +325,8 @@ ClockTick(
        struct tm       tm; 
        time_t          time_value;
        char *          time_ptr;
-       register Display *      dpy = XtDisplay (w);
-       register Window         win = XtWindow (w);
+       Display *       dpy = XtDisplay (w);
+       Window          win = XtWindow (w);
 
        if (id || !w->clock.interval_id)
                w->clock.interval_id =
@@ -508,8 +508,8 @@ DrawHand(
         Dimension width,
         double fraction_of_a_circle )
 {
-       register double angle, cosangle, sinangle;
-       register double ws, wc;
+       double angle, cosangle, sinangle;
+       double ws, wc;
        Position x, y, x1, y1, x2, y2;
        double cos ();
        double sin ();
@@ -593,8 +593,8 @@ DrawClockFace(
        Boolean draw_minute_ticks =
                         ((G_ClockWidth (g) > (Dimension) (2 * SIZE_DEFAULT)) &&
                          (G_ClockHeight (g) > (Dimension) (2 * SIZE_DEFAULT)));
-       register int i;
-       register int delta =
+       int i;
+       int delta =
                        (int)(g->clock.radius - g->clock.tick_spacing) / 3;
 
        if (! XtIsManaged ((Widget)g))
index 0c2253d4526a642d905870a031da66699f693c7d..5d8d9ddf748c88fd678ab6df6a616641e1707f1f 100644 (file)
@@ -549,7 +549,7 @@ void
 ProcessColormapList (WmScreenData *pSD, ClientData *pCD)
 
 {
-       register int i;
+       int i;
        XEvent event;
 
 
index c6e9a22e9aac241397db0acbabb999d44ebc229e..d5d0e2eae17a0e6d5c25cd3afe9824aa6350ccdd 100644 (file)
@@ -724,7 +724,7 @@ static void CancelCB (Widget w, caddr_t client_data, caddr_t call_data)
 void ConfirmAction (WmScreenData *pSD, int nbr)
 {
     Arg           args[8];
-    register int  n;
+    int  n;
     int           x, y;
     Dimension     width, height;
     Widget        dialogShellW = NULL;
index 36305ec78508a6e476dcdbe5c7cc8135b3d579cc..1f9c50daa190b695a98599766f1db0d5e6d0056f 100644 (file)
@@ -3507,7 +3507,7 @@ F_Version (String args, ClientData *pCD, XEvent *event)
 
 Boolean F_Send_Msg (String args, ClientData *pCD, XEvent *event)
 {
-    register int i;
+    int i;
 
 
     if (pCD && pCD->mwmMessagesCount)
index f3c71caea304265e85cb2327e1db2e6b76690a99..6e8d340945811ae0d641f3bd05e9dd712825790a 100644 (file)
 void BevelRectangle (RList *prTop, RList *prBot, int x, int y, unsigned int width, unsigned int height, unsigned int top_wid, unsigned int right_wid, unsigned int bot_wid, unsigned int left_wid)
 {
     XRectangle *prect;         /* pointer to "current" rectangle */
-    register int count;                /* counter used for beveling operation */
+    int count;         /* counter used for beveling operation */
     int join1, join2;          /* used to compute "good" bevel joints */
     int x1, y1, len;           /* used to compute bevel parameters */
     int *piTop, *piBot;
@@ -262,7 +262,7 @@ void BevelRectangle (RList *prTop, RList *prBot, int x, int y, unsigned int widt
 void BevelDepressedRectangle (RList *prTop, RList *prBot, int x, int y, unsigned int width, unsigned int height, unsigned int top_wid, unsigned int right_wid, unsigned int bot_wid, unsigned int left_wid, unsigned int in_wid)
 {
     XRectangle *prect;         /* pointer to "current" rectangle */
-    register int count;                /* counter used for beveling operation */
+    int count;         /* counter used for beveling operation */
     int join1, join2;          /* used to compute "good" bevel joints */
     int x1, y1, len;           /* used to compute bevel parameters */
     int *piTop, *piBot;
index 955bdca5b537d2066a02e1ea634e991faad40fb3..607bb01ebe75c8b10fedf15e053c902035b567ae 100644 (file)
@@ -908,7 +908,7 @@ _DtWmParseNextLine (
  *
  ***********************************************************************/
 
-    register unsigned char     *string;
+    unsigned char      *string;
     int                                len;
     int   chlen;
     wchar_t last;
index c136c315c20b56fead2374fcc93b78a922c56f47..c24852b85a6d97429095988f0b6d5b133335a0ab 100644 (file)
@@ -1497,9 +1497,9 @@ unsigned char *NextToken (unsigned char *pchIn, int *pLen,
        unsigned char **ppchNext)
 {
     unsigned char *pchR = pchIn;
-    register int   i;
+    int   i;
 
-    register int   chlen;
+    int   chlen;
 
     for (i = 0;
         ((chlen = mblen((char *)pchIn, MB_CUR_MAX)) > 0) && (pchIn[0] != '\0');
index 7587373fa2bcc7c18a8c67945627d25af1d06d41..164c059b629f8aa585e8b1c6806945ceda773bc3 100644 (file)
@@ -2440,7 +2440,7 @@ static MenuItem *ParseMenuItems (WmScreenData *pSD)
     MenuItem      *firstMenuItem;
     MenuItem      *lastMenuItem;
     MenuItem      *menuItem;
-    register int   ix;
+    int   ix;
     
     /*
      * Parse "label [mnemonic] [accelerator] function" or
@@ -2836,7 +2836,7 @@ int ParseWmFunction (unsigned char **linePP, unsigned int res_spec,
 {
     unsigned char *lineP = *linePP;
     unsigned char *string;
-    register int  low, mid, high, cmp;
+    int  low, mid, high, cmp;
 
     /*
      * Skip leading white space.
@@ -4367,7 +4367,7 @@ static Boolean ParseModifiers(unsigned char **linePP, unsigned int *state)
 
 static Boolean LookupModifier (unsigned char *name, unsigned int *valueP)
 {
-    register int i;
+    int i;
 
     if (name != NULL)
     {
@@ -4423,7 +4423,7 @@ static Boolean ParseEventType (unsigned char **linePP, EventTableEntry *table,
     unsigned char *lineP = *linePP;
     unsigned char *startP = *linePP;
     unsigned char eventTypeStr[MAX_EVENTTYPE_STRLEN+1];
-    register int  len;
+    int  len;
 
     /* Parse out the event string */
     ScanAlphanumeric (&lineP);
index 059521df1902ffc59b3dc94a33c6f2a544e96588..661bfde0451986080d0ba4a70e661583eeb42dc8 100644 (file)
@@ -5857,10 +5857,10 @@ XmColorData * _WmGetDefaultColors (Screen *screen, Colormap colormap,
     static int defaultCount[2] = {0, 0};
     static int defaultSize[2] = {0, 0};
     int setId;
-    register XmColorData *set;
-    register int count;
-    register int size;
-    register int i;
+    XmColorData *set;
+    int count;
+    int size;
+    int i;
     Display *display = DisplayOfScreen (screen);
     XColor colorDef;
 
index 75d5da85a6366c11d839418eb637c9e8aeaa4523..18b5b6ff70620a74292046ddcf68f1ffe0c767f5 100644 (file)
@@ -953,8 +953,8 @@ ProcessWmSaveHint (ClientData *pCD)
 void 
 ProcessWmHints (ClientData *pCD, Boolean firstTime)
 {
-    register XWMHints *pXWMHints;
-    register long flags;
+    XWMHints *pXWMHints;
+    long flags;
     Pixmap iconPixmap;
     Pixmap iconMask;
     WmWorkspaceData *pWsTmp;
@@ -1372,8 +1372,8 @@ ProcessWmHints (ClientData *pCD, Boolean firstTime)
 void 
 ProcessWmNormalHints (ClientData *pCD, Boolean firstTime, long manageFlags)
 {
-    register SizeHints *pNormalHints;
-    register long       flags;
+    SizeHints *pNormalHints;
+    long       flags;
     int                 diff;
     unsigned long       decoration;
     unsigned int        boxdim, tmpMin;
@@ -3162,7 +3162,7 @@ PlaceIconOnScreen (ClientData *pCD, int *pX, int *pY)
 void 
 FixWindowConfiguration (ClientData *pCD, unsigned int *pWidth, unsigned int *pHeight, unsigned int widthInc, unsigned int heightInc)
 {
-    register int  delta;
+    int  delta;
 
     /*
      * Make sure we're on width/height increment boundaries.
@@ -3225,8 +3225,8 @@ FixWindowConfiguration (ClientData *pCD, unsigned int *pWidth, unsigned int *pHe
 void 
 FixWindowSize (ClientData *pCD, unsigned int *pWidth, unsigned int *pHeight, unsigned int widthInc, unsigned int heightInc)
 {
-    register int  deltaW;
-    register int  deltaH;
+    int  deltaW;
+    int  deltaH;
     WmScreenData *pSD = pCD->pSD;
 
     /*
index 643bfcc07cf1d71fe7dad8871e1d0bbabb2c64bc..e6909c66bbeba3c5efb54042ecdbec8873637373 100644 (file)
@@ -2624,7 +2624,7 @@ MakeTransientFamilyStackingList (
     ClientData *pcdSub;
     Window *nextWindow, wSave, wTemp, wTop;
     int count = CountTransientChildren (pcdLeader);
-    register int i, j;
+    int i, j;
 
     /*
      * Construct the transient stacking list according to
index 9e2c34964ece009dddf9cb17e4d6197a5bd92944..a19e2716eb704df4c2a9a02dac65a96d67b3703a 100644 (file)
@@ -105,8 +105,8 @@ char **argv;
     Widget  top;
     XtAppContext app_context;
     Arg        args[10];
-    register int n;
-    register int i;
+    int n;
+    int i;
 
     /*  
      * initialize toolkit  
@@ -273,8 +273,8 @@ Widget top;
 {
     Window root;
     Arg        args[10]; /*  arg list          */
-    register int n;    /*  arg count           */
-    register int i;
+    int n;     /*  arg count           */
+    int i;
     DtWsmWorkspaceInfo *pWsInfo;
     char *pchWs;
     Widget left = None;
@@ -346,7 +346,7 @@ Widget top;
 void ShowWorkspaceOccupancy ()
 {
     Arg        args[10]; /*  arg list          */
-    register int n;    /*  arg count           */
+    int n;     /*  arg count           */
     int i,j;
     Atom *paWsIn = NULL;
     unsigned long numWsIn;
index 2eb229972c81bef718ec3a1a1125eaa345a5e66a..06d76566dcf92e7120b2db712f0c598fc0be3052 100644 (file)
@@ -101,8 +101,8 @@ char **argv;
     Widget  top;
     XtAppContext app_context;
     Arg        args[10];
-    register int n;
-    register int i;
+    int n;
+    int i;
     XmString xms, xmsBlank;
 
     /*  
@@ -454,7 +454,7 @@ char **argv;
 void ShowCurrentWorkspaceInfo ()
 {
     Arg        args[10]; /*  arg list          */
-    register int n;    /*  arg count           */
+    int n;     /*  arg count           */
     Atom aWs;
     int rval;
     Display *dpy;