* doc/autoconf.texi (Using the System Type): Use AS_CASE in
example instead of raw case.
Signed-off-by: William Pursell <bill.pursell@gmail.com>
+2008-12-28 William Pursell <bill.pursell@gmail.com> (tiny change)
+
+ Use AS_CASE in documented example.
+ * doc/autoconf.texi (Using the System Type): Use AS_CASE in
+ example instead of raw case.
+
2008-12-23 Eric Blake <ebb9@byu.net>
Make m4_dumpdef more useful with M4 1.6.
program or library.
@example
-case $host in
- alpha*-*-*) CYCLE_OBJ=rpcc.o ;;
- i?86-*-*) CYCLE_OBJ=rdtsc.o ;;
- *) CYCLE_OBJ= ;;
-esac
+AS_CASE([$host],
+ [alpha*-*-*], [CYCLE_OBJ=rpcc.o],
+ [i?86-*-*], [CYCLE_OBJ=rdtsc.o],
+ [CYCLE_OBJ=""]
+)
AC_SUBST([CYCLE_OBJ])
@end example