Message-ID: <24579.8890.258449.785172@stat.math.ethz.ch>
Date: 2021-01-16T17:30:34Z
From: Martin Maechler
Subject: r79833 src/library/tools/R/Rd2HTML.R minor typo
In-Reply-To: <20210116120441.64c4dd6f@parabola>
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.
>
> [............]