diff --git a/DESCRIPTION b/DESCRIPTION index d49359c..fd82b7f 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -46,7 +46,7 @@ Imports: tidyr (>= 1.0.0), Encoding: UTF-8 LazyData: true -RoxygenNote: 7.3.1 +RoxygenNote: 7.3.2 Suggests: bib2df, digest, diff --git a/man/convertdf_enc.Rd b/man/convertdf_enc.Rd index 520bddb..3bd56a4 100644 --- a/man/convertdf_enc.Rd +++ b/man/convertdf_enc.Rd @@ -17,10 +17,13 @@ class (such as \code{data.frame} or \code{sf})} \item{sub}{character string. If not \code{NA} it is used to replace any non-convertible bytes in the input. (This would normally be a single character, but can be more.) If \code{"byte"}, the indication is - \code{""} with the hex code of the byte. If \code{"Unicode"} - and converting from UTF-8, the Unicode point in the form - \code{""}, or if \code{c99}, a C99-style escape - \code{"\uxxxx"}.} + \code{""} with the hex code of the byte. + %% as from R 4.4.0 always zero-pads to 4 hex digits. + If \code{"Unicode"} and converting from UTF-8, the Unicode point in + the form \code{""}, or if \code{c99}, a C99-style escape + \code{"\uxxxx"}. (For points in a \sQuote{supplementary plane}, + %% zero-padding to eight hex digits is as prescribed by C99. + \code{"\Uxxxxxxxx"} is used, with zero-padding)} \item{colnames}{Should column names be converted as well?} }