]> git.ipfire.org Git - thirdparty/make.git/commitdiff
Cleanups.
authorPaul Smith <psmith@gnu.org>
Mon, 27 May 2013 17:52:15 +0000 (13:52 -0400)
committerPaul Smith <psmith@gnu.org>
Mon, 27 May 2013 17:52:15 +0000 (13:52 -0400)
README.git
main.c

index 3f12d0205faed44bbf606c9c57de246066964077..8af5815894adbfb84368b64856650a6486fb27d6 100644 (file)
@@ -214,7 +214,7 @@ For both final releases and pre-releases, send an email with the URL of
 the package to the GNU translation robot to allow the translators to
 work on it:
 
-     <translation@iro.umontreal.ca>
+     <coordinator@translationproject.org>
 
 
 Where to Announce
diff --git a/main.c b/main.c
index 16ed31808763f4284b298af2bc0767d210868175..3da595f858b91322228b4df86797cbe1d2ce9176 100644 (file)
--- a/main.c
+++ b/main.c
@@ -1340,25 +1340,24 @@ main (int argc, char **argv, char **envp)
 
         env = Lock ("ENV:", ACCESS_READ);
         if (env)
-        {
+          {
             old = CurrentDir (DupLock (env));
             Examine (env, &fib);
 
             while (ExNext (env, &fib))
-            {
+              {
                 if (fib.fib_DirEntryType < 0) /* File */
-                {
+                  {
                     /* Define an empty variable. It will be filled in
-                        variable_lookup(). Makes startup quite a bit
-                        faster. */
-                        define_variable (fib.fib_FileName,
-                            strlen (fib.fib_FileName),
-                        "", o_env, 1)->export = v_export;
-                }
-            }
+                       variable_lookup(). Makes startup quite a bit faster. */
+                    define_variable (fib.fib_FileName,
+                                     strlen (fib.fib_FileName),
+                                     "", o_env, 1)->export = v_export;
+                  }
+              }
             UnLock (env);
             UnLock (CurrentDir (old));
-        }
+          }
     }
 #endif