getcwd: Fix misindentation.
authorBruno Haible <bruno@clisp.org>
Tue, 1 May 2012 15:12:20 +0000 (17:12 +0200)
committerBruno Haible <bruno@clisp.org>
Tue, 1 May 2012 15:12:20 +0000 (17:12 +0200)
* m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Fix indentation.

ChangeLog
m4/getcwd.m4

index 1e384b3..58632fa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-05-01  Bruno Haible  <bruno@clisp.org>
+
+       getcwd: Fix misindentation.
+       * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Fix indentation.
+
 2012-04-29  Paul Eggert  <eggert@cs.ucla.edu>
 
        exclude: process exclude and include directives in order
index ccb1f47..50b96c6 100644 (file)
@@ -6,7 +6,7 @@
 # with or without modifications, as long as this notice is preserved.
 
 # Written by Paul Eggert.
-# serial 11
+# serial 12
 
 AC_DEFUN([gl_FUNC_GETCWD_NULL],
   [
@@ -45,15 +45,14 @@ AC_DEFUN([gl_FUNC_GETCWD_NULL],
          ]])],
         [gl_cv_func_getcwd_null=yes],
         [gl_cv_func_getcwd_null=no],
-        [[
-       case "$host_os" in
-                               # Guess yes on glibc systems.
-         *-gnu*)               gl_cv_func_getcwd_null="guessing yes";;
-                               # Guess yes on Cygwin.
-         cygwin*)              gl_cv_func_getcwd_null="guessing yes";;
-                               # If we don't know, assume the worst.
-         *)                    gl_cv_func_getcwd_null="guessing no";;
-       esac
+        [[case "$host_os" in
+                     # Guess yes on glibc systems.
+            *-gnu*)  gl_cv_func_getcwd_null="guessing yes";;
+                     # Guess yes on Cygwin.
+            cygwin*) gl_cv_func_getcwd_null="guessing yes";;
+                     # If we don't know, assume the worst.
+            *)       gl_cv_func_getcwd_null="guessing no";;
+          esac
         ]])])
 ])