Mailing List Archive

r3361 - trunk/varnish-cache/man
Author: tfheen
Date: 2008-11-06 12:46:31 +0100 (Thu, 06 Nov 2008)
New Revision: 3361

Modified:
trunk/varnish-cache/man/vcl.7so
Log:
Fix up $N vs \N in man page

The VCL man page documented the capturing parentheses as using $N
rather than \N which is actually used.

Fixes #359


Modified: trunk/varnish-cache/man/vcl.7so
===================================================================
--- trunk/varnish-cache/man/vcl.7so 2008-11-06 11:45:45 UTC (rev 3360)
+++ trunk/varnish-cache/man/vcl.7so 2008-11-06 11:46:31 UTC (rev 3361)
@@ -198,11 +198,11 @@
.Fa sub .
Within
.Fa sub ,
-.Va $0
+.Va \\0
(which can also be spelled
.Va & )
is replaced with the entire matched string, and
-.Va $n
+.Va \\n
is replaced with the contents of subgroup
.Ar n
in the matched string.