Hello!
The file doc/cvs.texinfo (today, head branch) has an error in the example
for CVSROOT/notify. Backslashes should not be used before quotes. The
default CVSROOT/notify doesn't use backslashes before quotes either.
Testing results:
Notification works without backslashes.
Notification doesn't work with backslashes.
The info file "compiles" and doesn't contain quotes after my patch.
The postscript file "compiles" and doesn't contain quotes after my patch.
Regards,
Pavel Roskin
=== cut here ===
Index: doc/ChangeLog
===================================================================
RCS file: /home2/cvsroot/ccvs/doc/ChangeLog,v
retrieving revision 1.618
diff -u -r1.618 ChangeLog
--- ChangeLog 2000/03/08 16:22:21 1.618
+++ ChangeLog 2000/04/03 20:10:05
@@ -1,3 +1,8 @@
+2000-04-03 Pavel Roskin <[EMAIL PROTECTED]>
+
+ * cvs.texinfo (Telling CVS to notify you): Remove backslashes
+ before quotes.
+
2000-03-08 Larry Jones <[EMAIL PROTECTED]>
* cvs.texinfo (Connection): Add note about inetd rate limit.
Index: doc/cvs.texinfo
===================================================================
RCS file: /home2/cvsroot/ccvs/doc/cvs.texinfo,v
retrieving revision 1.486
diff -u -r1.486 cvs.texinfo
--- cvs.texinfo 2000/03/08 16:22:21 1.486
+++ cvs.texinfo 2000/04/03 20:10:08
@@ -6348,7 +6348,7 @@
single line:
@example
-ALL mail %s -s \"CVS notification\"
+ALL mail %s -s "CVS notification"
@end example
This causes users to be notified by electronic mail.
=== cut here ===