r79833 src/library/tools/R/Rd2HTML.R minor typo
Thank you, Ivan, I've updated the source now, Martin
On line 105, "&\\hellip;" should probably be "…":
Index: Rd2HTML.R
===================================================================
--- Rd2HTML.R (revision 79833)
+++ Rd2HTML.R (working copy)
- x <- psub("\\\\(dots|ldots)", "&\\hellip;", x)
+ x <- psub("\\\\(dots|ldots)", "…", x)
The backslash is ignored by gsub(), so no actual bug happens as a
result of this.
[............]