* doc/autoconf.texi (Shell Functions): Mention the bug.
Signed-off-by: Eric Blake <ebb9@byu.net>
+2008-11-18 Eric Blake <ebb9@byu.net>
+
+ Document a Solaris /bin/sh bug with 'set -e'.
+ * doc/autoconf.texi (Shell Functions): Mention the bug.
+
2008-11-17 Eric Blake <ebb9@byu.net>
Detect empty list in AS_FOR.
2
@end example
+Not all shells treat shell functions as simple commands impacted by
+@samp{set -e}, for example with Solaris 10 @command{bin/sh}:
+
+@example
+$ @kbd{bash -c 'f()@{ return 1; @}; set -e; f; echo oops}
+$ @kbd{/bin/sh -c 'f()@{ return 1; @}; set -e; f; echo oops}
+oops
+@end example
+
Shell variables and functions may share the same namespace, for example
with Solaris 10 @command{/bin/sh}: