xkbcomp: Don't say we're exiting when we're not
authorDan Nicholson <dbn.lists@gmail.com>
Sat, 4 Apr 2009 19:50:27 +0000 (12:50 -0700)
committerDan Nicholson <dbn.lists@gmail.com>
Sat, 4 Apr 2009 19:50:27 +0000 (12:50 -0700)
src/xkbcomp/compat.c
src/xkbcomp/keytypes.c
src/xkbcomp/misc.c
src/xkbcomp/vmod.c

index 6e53562..077ffbe 100644 (file)
@@ -823,7 +823,6 @@ CompileCompatMap(XkbFile *file, XkbcDescPtr xkb, unsigned merge,
             Success)
         {
             WSGO("Couldn't allocate compatibility map\n");
-            ACTION("Exiting\n");
             return False;
         }
         if (info.name != NULL)
index 616525e..377081d 100644 (file)
@@ -1233,7 +1233,6 @@ CompileKeyTypes(XkbFile *file, XkbcDescPtr xkb, unsigned merge)
         if (XkbcAllocClientMap(xkb, XkbKeyTypesMask, i) != Success)
         {
             WSGO("Couldn't allocate client map\n");
-            ACTION("Exiting\n");
             return False;
         }
         xkb->map->num_types = i;
@@ -1246,7 +1245,6 @@ CompileKeyTypes(XkbFile *file, XkbcDescPtr xkb, unsigned merge)
             if (XkbcInitCanonicalKeyTypes(xkb, missing, keypadVMod) != Success)
             {
                 WSGO("Couldn't initialize canonical key types\n");
-                ACTION("Exiting\n");
                 return False;
             }
             if (missing & XkbOneLevelMask)
index a90066a..4b00ebf 100644 (file)
@@ -68,7 +68,6 @@ ProcessIncludeFile(IncludeStmt * stmt,
         {
             ERROR("Can't find file \"%s\" for %s include\n", stmt->file,
                    XkbDirectoryForInclude(file_type));
-            ACTION("Exiting\n");
             return False;
         }
         strcpy(oldFile, scanFile);
@@ -81,7 +80,6 @@ ProcessIncludeFile(IncludeStmt * stmt,
         {
             setScanState(oldFile, oldLine);
             ERROR("Error interpreting include file \"%s\"\n", stmt->file);
-            ACTION("Exiting\n");
             fclose(file);
             return False;
         }
@@ -100,7 +98,6 @@ ProcessIncludeFile(IncludeStmt * stmt,
         {
             ERROR("No %s named \"%s\" in the include file \"%s\"\n",
                    XkbcConfigText(file_type), stmt->map, stmt->file);
-            ACTION("Exiting\n");
             return False;
         }
     }
index 3200667..bbcad35 100644 (file)
@@ -133,7 +133,6 @@ HandleVModDef(VModDef * stmt, unsigned mergeMode, VModInfo * info)
     {
         ERROR("Too many virtual modifiers defined (maximum %d)\n",
                XkbNumVirtualMods);
-        ACTION("Exiting\n");
         return False;
     }
     info->defined |= (1 << nextFree);