```r lintr::lint('strsplit(x, split = "\\\\;")\n', lintr::fixed_regex_linter()) # Error: '\;' is an unrecognized escape in character string starting ""\;" ``` But the code itself is fine: ```r strsplit('a;b', '\\;') # [[1]] # [1] "a" "b" ```