changeset 11606:85d7761e781e

Escape non-texinfo { and }s * doc/ld-output-def.texi (Visual Studio Compatibility): Fix markup error. Signed-off-by: Eric Blake <ebb9@byu.net>
author Neil Jerram <neil@ossau.uklinux.net>
date Fri, 05 Jun 2009 23:42:52 +0100
parents e44545af8f70
children 806d4180d151
files ChangeLog doc/ld-output-def.texi
diffstat 2 files changed, 9 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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
--- a/doc/ld-output-def.texi
+++ b/doc/ld-output-def.texi
@@ -19,9 +19,9 @@
 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