Just noticed this:
autoconf.texi:7884: Misplaced {.
autoconf.texi:7885: Misplaced {.
autoconf.texi:7885: Misplaced }.
autoconf.texi:7886: Misplaced {.
autoconf.texi:7886: Misplaced }.
autoconf.texi:7887: Misplaced {.
autoconf.texi:7887: Misplaced }.
autoconf.texi:7888: Misplaced {.
autoconf.texi:7888: Misplaced }.
autoconf.texi:7888: Misplaced }.
makeinfo: Removing output file `autoconf.info' due to errors; use --force to
preserve.
make[2]: *** [autoconf.info] Error 1
Here's the fix I've just pushed:
>From 89f948d6446f7b3207dce1ca495f8e99fa991cda Mon Sep 17 00:00:00 2001
From: Jim Meyering <[email protected]>
Date: Thu, 28 May 2009 19:08:20 +0200
Subject: [PATCH] Fix syntax errors in autoconf.texi.
* doc/autoconf.texi (Erlang Libraries): @-escape curly braces
in example code.
---
ChangeLog | 6 ++++++
doc/autoconf.texi | 10 +++++-----
2 files changed, 11 insertions(+), 5 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index a9f3ca8..8a994a9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-05-28 Jim Meyering <[email protected]>
+
+ Fix syntax errors in autoconf.texi.
+ * doc/autoconf.texi (Erlang Libraries): @-escape curly braces
+ in example code.
+
2009-05-28 Romain Lenglet <[email protected]>
New AC_ERLANG_SUBST_ERTS_VER macro.
diff --git a/doc/autoconf.texi b/doc/autoconf.texi
index 632058d..5eb8964 100644
--- a/doc/autoconf.texi
+++ b/doc/autoconf.texi
@@ -7881,11 +7881,11 @@ Erlang Libraries
should contain:
@example
-{release,
- {"@@PACKAGE@@", "@@VERSION@@"},
- {erts, "@@ERLANG_ERTS_VER@@"},
- [{stdlib, "@@ERLANG_LIB_VER_stdlib@@"},
- {@@PACKAGE@@, "@@VERSION@@"}]}.
+...@{release,
+ @{"@@PACKAGE@@", "@@VERSION@@"@},
+ @{erts, "@@ERLANG_ERTS_VER@@"@},
+ [...@{stdlib, "@@ERLANG_LIB_VER_stdlib@@"@},
+ @{@@PACKAGE@@, "@@VERSION@@"@}...@}.
@end example
@end defmac
--
1.6.3.1.268.g94d6d1