diff --git a/.devel/sphinx/rapi/stri_datetime_add.md b/.devel/sphinx/rapi/stri_datetime_add.md
index a5c287a0..47ac0072 100644
--- a/.devel/sphinx/rapi/stri_datetime_add.md
+++ b/.devel/sphinx/rapi/stri_datetime_add.md
@@ -68,7 +68,7 @@ print(x)
```
```
-## [1] "2024-01-09 11:24:49 AEDT"
+## [1] "2024-01-09 12:12:28 AEDT"
```
```r
@@ -76,7 +76,7 @@ stri_datetime_add(x, -2, units='months')
```
```
-## [1] "2023-11-09 11:24:49 AEDT"
+## [1] "2023-11-09 12:12:28 AEDT"
```
```r
diff --git a/.devel/sphinx/rapi/stri_datetime_fields.md b/.devel/sphinx/rapi/stri_datetime_fields.md
index 1c75bd3b..490530bd 100644
--- a/.devel/sphinx/rapi/stri_datetime_fields.md
+++ b/.devel/sphinx/rapi/stri_datetime_fields.md
@@ -77,9 +77,9 @@ stri_datetime_fields(stri_datetime_now())
```
## Year Month Day Hour Minute Second Millisecond WeekOfYear WeekOfMonth
-## 1 2023 11 9 11 24 49 982 46 2
+## 1 2023 11 9 12 12 28 375 46 2
## DayOfYear DayOfWeek Hour12 AmPm Era
-## 1 313 5 11 1 2
+## 1 313 5 0 2 2
```
```r
@@ -88,9 +88,9 @@ stri_datetime_fields(stri_datetime_now(), locale='@calendar=hebrew')
```
## Year Month Day Hour Minute Second Millisecond WeekOfYear WeekOfMonth
-## 1 5784 2 25 11 24 49 986 9 4
+## 1 5784 2 25 12 12 28 380 9 4
## DayOfYear DayOfWeek Hour12 AmPm Era
-## 1 55 5 11 1 1
+## 1 55 5 0 2 1
```
```r
diff --git a/.devel/sphinx/rapi/stri_datetime_format.md b/.devel/sphinx/rapi/stri_datetime_format.md
index 26679e31..72143a9c 100644
--- a/.devel/sphinx/rapi/stri_datetime_format.md
+++ b/.devel/sphinx/rapi/stri_datetime_format.md
@@ -221,5 +221,5 @@ stri_datetime_format(stri_datetime_now(), 'datetime_relative_medium')
```
```
-## [1] "today, 11:24:50 am"
+## [1] "today, 12:12:28 pm"
```
diff --git a/.devel/sphinx/rapi/stri_read_lines.md b/.devel/sphinx/rapi/stri_read_lines.md
index 8ae3ea0a..ecbca8f2 100644
--- a/.devel/sphinx/rapi/stri_read_lines.md
+++ b/.devel/sphinx/rapi/stri_read_lines.md
@@ -7,7 +7,7 @@ Reads a text file in ins entirety, re-encodes it, and splits it into text lines.
## Usage
``` r
-stri_read_lines(con, encoding = NULL, fname = con, fallback_encoding = NULL)
+stri_read_lines(con, encoding = NULL, fname = con)
```
## Arguments
diff --git a/.devel/sphinx/rapi/stri_sprintf.md b/.devel/sphinx/rapi/stri_sprintf.md
index 0a357fc7..54f088ce 100644
--- a/.devel/sphinx/rapi/stri_sprintf.md
+++ b/.devel/sphinx/rapi/stri_sprintf.md
@@ -188,7 +188,7 @@ stri_sprintf("UNIX time %1$f is %1$s.", Sys.time())
```
```
-## [1] "UNIX time 1699489499.508911 is 2023-11-09 11:24:59.508911."
+## [1] "UNIX time 1699492358.726822 is 2023-11-09 12:12:38.726822."
```
```r
@@ -213,7 +213,7 @@ stri_sprintf("%1$s is %1$f UNIX time.", Sys.time()) # re-coercion needed
```
```
-## [1] "2023-11-09 11:24:59.510592 is 1699489499.510592 UNIX time."
+## [1] "2023-11-09 12:12:38.728535 is 1699492358.728535 UNIX time."
```
```r
diff --git a/.devel/tinytest.R b/.devel/tinytest.R
index ac6cd686..298234b1 100644
--- a/.devel/tinytest.R
+++ b/.devel/tinytest.R
@@ -9,8 +9,7 @@ library("tinytest")
library("stringi")
library("methods")
-str(stringi::stri_info())
-
+#str(stringi::stri_info())
# options(encoding="UTF-8") # e.g., on Windows
cat(stri_info(short=TRUE), "\n")
cat(Sys.getlocale(), "\n")
diff --git a/.github/workflows/r-icu-system.yml b/.github/workflows/r-icu-system.yml
index f7a277b2..caf6a50b 100644
--- a/.github/workflows/r-icu-system.yml
+++ b/.github/workflows/r-icu-system.yml
@@ -33,5 +33,4 @@ jobs:
- name: Test stringi
run: |
Rscript -e 'source(".devel/tinytest.R")'
- LC_ALL="C.UTF-8" Rscript -e 'source(".devel/tinytest.R")'
LC_ALL="pl_PL.UTF-8" Rscript -e 'source(".devel/tinytest.R")'
diff --git a/R/files.R b/R/files.R
index dcb0a9a9..4bcd1f61 100644
--- a/R/files.R
+++ b/R/files.R
@@ -111,7 +111,7 @@ stri_read_raw <- function(con, fname = con)
#' @family files
#' @export
stri_read_lines <- function(con, encoding = NULL,
- fname = con, fallback_encoding = NULL)
+ fname = con)
{
if (!missing(fname) && missing(con)) { # DEPRECATED
warning("The 'fname' argument in stri_read_lines is a deprecated alias of 'con' and will be removed in a future release of 'stringi'.")
diff --git a/docs/genindex.html b/docs/genindex.html
index d495d6a7..696d3296 100644
--- a/docs/genindex.html
+++ b/docs/genindex.html
@@ -357,7 +357,7 @@
Index
Some rights reserved. Licensed under CC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/index.html b/docs/index.html
index afac950f..800542de 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -448,7 +448,7 @@ stringi: Fast and Portable Character String Processing in R
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/install.html b/docs/install.html
index 0596c0c6..91dc755c 100644
--- a/docs/install.html
+++ b/docs/install.html
@@ -470,7 +470,7 @@ Getting Help
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/news.html b/docs/news.html
index 2c3e156a..d50e8968 100644
--- a/docs/news.html
+++ b/docs/news.html
@@ -1218,7 +1218,7 @@ 0.1-1 (2013-01-05)
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi.html b/docs/rapi.html
index 38c3a0bb..5472c6fe 100644
--- a/docs/rapi.html
+++ b/docs/rapi.html
@@ -490,7 +490,7 @@ R Package stringi Reference
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/about_arguments.html b/docs/rapi/about_arguments.html
index 82c790dc..17df9e53 100644
--- a/docs/rapi/about_arguments.html
+++ b/docs/rapi/about_arguments.html
@@ -420,7 +420,7 @@ See AlsoCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/about_encoding.html b/docs/rapi/about_encoding.html
index e6483d9b..70cbb60c 100644
--- a/docs/rapi/about_encoding.html
+++ b/docs/rapi/about_encoding.html
@@ -461,7 +461,7 @@ See AlsoCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/about_locale.html b/docs/rapi/about_locale.html
index b8e7077d..78babd52 100644
--- a/docs/rapi/about_locale.html
+++ b/docs/rapi/about_locale.html
@@ -431,7 +431,7 @@ See AlsoCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/about_search.html b/docs/rapi/about_search.html
index f1072d21..215f6eb1 100644
--- a/docs/rapi/about_search.html
+++ b/docs/rapi/about_search.html
@@ -432,7 +432,7 @@ See AlsoCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/about_search_boundaries.html b/docs/rapi/about_search_boundaries.html
index 09e44b7c..2431f296 100644
--- a/docs/rapi/about_search_boundaries.html
+++ b/docs/rapi/about_search_boundaries.html
@@ -424,7 +424,7 @@ See AlsoCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/about_search_charclass.html b/docs/rapi/about_search_charclass.html
index f0138e66..709c2b1a 100644
--- a/docs/rapi/about_search_charclass.html
+++ b/docs/rapi/about_search_charclass.html
@@ -638,7 +638,7 @@ See AlsoCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/about_search_coll.html b/docs/rapi/about_search_coll.html
index 6557dbd3..85a42705 100644
--- a/docs/rapi/about_search_coll.html
+++ b/docs/rapi/about_search_coll.html
@@ -412,7 +412,7 @@ See AlsoCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/about_search_fixed.html b/docs/rapi/about_search_fixed.html
index 0cccd576..e28fadb2 100644
--- a/docs/rapi/about_search_fixed.html
+++ b/docs/rapi/about_search_fixed.html
@@ -412,7 +412,7 @@ See AlsoCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/about_search_regex.html b/docs/rapi/about_search_regex.html
index c5d487fe..e7591cce 100644
--- a/docs/rapi/about_search_regex.html
+++ b/docs/rapi/about_search_regex.html
@@ -593,7 +593,7 @@ See AlsoCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/about_stringi.html b/docs/rapi/about_stringi.html
index eeecb0e1..21caa01e 100644
--- a/docs/rapi/about_stringi.html
+++ b/docs/rapi/about_stringi.html
@@ -447,7 +447,7 @@ See AlsoCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/operator_add.html b/docs/rapi/operator_add.html
index a308db6b..2554a9a8 100644
--- a/docs/rapi/operator_add.html
+++ b/docs/rapi/operator_add.html
@@ -444,7 +444,7 @@ ExamplesCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/operator_compare.html b/docs/rapi/operator_compare.html
index 93707987..a333f817 100644
--- a/docs/rapi/operator_compare.html
+++ b/docs/rapi/operator_compare.html
@@ -470,7 +470,7 @@ ExamplesCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/operator_dollar.html b/docs/rapi/operator_dollar.html
index c2969236..f300ba5c 100644
--- a/docs/rapi/operator_dollar.html
+++ b/docs/rapi/operator_dollar.html
@@ -458,7 +458,7 @@ ExamplesCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/stri_compare.html b/docs/rapi/stri_compare.html
index 59f74155..1b0e95f3 100644
--- a/docs/rapi/stri_compare.html
+++ b/docs/rapi/stri_compare.html
@@ -506,7 +506,7 @@ ExamplesCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/stri_count.html b/docs/rapi/stri_count.html
index f03941f8..9a99ddcb 100644
--- a/docs/rapi/stri_count.html
+++ b/docs/rapi/stri_count.html
@@ -487,7 +487,7 @@ ExamplesCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/stri_count_boundaries.html b/docs/rapi/stri_count_boundaries.html
index fbac8bb9..66ad443a 100644
--- a/docs/rapi/stri_count_boundaries.html
+++ b/docs/rapi/stri_count_boundaries.html
@@ -467,7 +467,7 @@ ExamplesCC BY-NC-ND 4.0.
Built with Sphinx
and a customised Furo theme.
- Last updated on 2023-11-09T11:25:05+1100.
+ Last updated on 2023-11-09T12:07:05+1100.
This site will never display any ads: it is a non-profit project.
It does not collect any data.
diff --git a/docs/rapi/stri_datetime_add.html b/docs/rapi/stri_datetime_add.html
index d49de87d..bb1420ba 100644
--- a/docs/rapi/stri_datetime_add.html
+++ b/docs/rapi/stri_datetime_add.html
@@ -423,9 +423,9 @@ Examples