]> granicus.if.org Git - graphviz/commitdiff
lefty: use C99 bools for 'errdo' globals
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 16 Jan 2022 19:55:42 +0000 (11:55 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 20 Jan 2022 02:15:00 +0000 (18:15 -0800)
cmd/lefty/aix_mods/exec.c
cmd/lefty/exec.c

index 8e81a5c3f8f7c802725481a33334eb0c5c94e07d..e6e7e969c4948fcbd8036cbd21538a6b9d8ce187 100644 (file)
@@ -63,7 +63,7 @@ static char *errnam[] = {
     "table changed during a forin loop",
 };
 
-static int errdo;
+static bool errdo;
 
 /* stack information */
 typedef struct sinfo_t {
@@ -219,7 +219,7 @@ static Tobj eeval(Tobj co, int ci)
     int i1, i2, res;
 
   tailrec:
-    errdo = TRUE;
+    errdo = true;
     v1o = NULL;
     ctype = TCgettype(co, ci);
     switch (ctype) {
@@ -522,7 +522,7 @@ static Tobj efcall(Tobj co, int ci)
     sinfoi = ownsinfoi;
     Mpopmark(m);
     lrtno = rtno, rtno = NULL;
-    errdo = TRUE;
+    errdo = true;
     return lrtno;
 }
 
@@ -950,7 +950,7 @@ static void err(int errnum, int level, Tobj co, int ci)
        }
        if (Estackdepth == 1) {
            fprintf(stderr, "\n");
-           errdo = FALSE;
+           errdo = false;
        }
        for (i = si; i >= 0; i--) {
            if (sinfop[i].fco) {
@@ -962,7 +962,7 @@ static void err(int errnum, int level, Tobj co, int ci)
        printbody(s, Eshowbody), free(s);
     }
     fprintf(stderr, "\n");
-    errdo = FALSE;
+    errdo = false;
 }
 
 static void printbody(char *s, int mode)
index b2cb696499fbc3d3ac984789f76e8c1d88afb420..42c2d5d41b6e6693ab22e265433a73b6e675cc6b 100644 (file)
@@ -75,7 +75,7 @@ static char *errnam[] = {
     "table changed during a forin loop",
 };
 
-static int errdo;
+static bool errdo;
 
 /* stack information */
 typedef struct sinfo_t {
@@ -228,7 +228,7 @@ static Tobj eeval (Tobj co, int ci) {
 
 tailrec:
     m1 = 0;
-    errdo = TRUE;
+    errdo = true;
     v1o = NULL;
     ctype = TCgettype (co, ci);
     switch (ctype) {
@@ -534,7 +534,7 @@ static Tobj efcall (Tobj co, int ci) {
     sinfoi = ownsinfoi;
     Mpopmark (m);
     lrtno = rtno, rtno = NULL;
-    errdo = TRUE;
+    errdo = true;
     return lrtno;
 }
 
@@ -957,7 +957,7 @@ static void err (int errnum, int level, Tobj co, int ci) {
         }
         if (Estackdepth == 1) {
             fprintf (stderr, "\n");
-            errdo = FALSE;
+            errdo = false;
         }
         for (i = si; i >= 0; i--) {
             if (sinfop[i].fco) {
@@ -969,7 +969,7 @@ static void err (int errnum, int level, Tobj co, int ci) {
         printbody (s, Eshowbody), free (s);
     }
     fprintf (stderr, "\n");
-    errdo = FALSE;
+    errdo = false;
 }
 
 static void printbody (char *s, int mode) {