Escape non-texinfo { and }s
authorNeil Jerram <neil@ossau.uklinux.net>
Fri, 5 Jun 2009 22:42:52 +0000 (23:42 +0100)
committerEric Blake <ebb9@byu.net>
Sat, 6 Jun 2009 16:07:06 +0000 (10:07 -0600)
* doc/ld-output-def.texi (Visual Studio Compatibility): Fix
markup error.

Signed-off-by: Eric Blake <ebb9@byu.net>
ChangeLog
doc/ld-output-def.texi

index e845591..009c6ea 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
+
+       Escape non-texinfo { and }s.
+       * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
+       markup error.
+
 2009-06-04  Jim Meyering  <meyering@redhat.com>
 
        gitlog-to-changelog: don't infloop on an empty commit log
index db48ee0..526ccb0 100644 (file)
@@ -19,9 +19,9 @@ This is explained in @url{http://support.microsoft.com/kb/131313/en-us}.
 The tool does not generate DEF files directly, so its output needs to
 be post processed manually:
 @smallexample
-$ { echo EXPORTS; \
-    dumpbin /EXPORTS libfoo-0.dll | tail -n+20 | awk '{ print $4 }'; \
-  } > libfoo-0.def
+$ @{ echo EXPORTS; \
+    dumpbin /EXPORTS libfoo-0.dll | tail -n+20 | awk '@{ print $4 @}'; \
+  @} > libfoo-0.def
 $ lib /def:libfoo-0.def
 @end smallexample