From: Paul Smith Date: Mon, 27 May 2013 17:52:15 +0000 (-0400) Subject: Cleanups. X-Git-Tag: 3.99.91~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4043519f7f200ea5012094f11e157b8fc512642;p=thirdparty%2Fmake.git Cleanups. --- diff --git a/README.git b/README.git index 3f12d020..8af58158 100644 --- a/README.git +++ b/README.git @@ -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: - + Where to Announce diff --git a/main.c b/main.c index 16ed3180..3da595f8 100644 --- 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