You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is by design, since string-case-modifier has this:
(if (or (<= to from)
(and (< start from)
(alphanumericp (char str (1- from)))
(alphanumericp (char str from)))
(and (< to end)
(alphanumericp (char str to))
(alphanumericp (char str (1- to)))))
;; if it's a zero-length string or if words extend beyond FROM;; or TO we return NIL, i.e. #'IDENTITYnil
My feature request is to add an option to allow preserving case even for words that extend beyond the boundaries.
What do you think?
The text was updated successfully, but these errors were encountered:
Case is not preserved if the matched term is not a whole word:
It works with whole words though:
This is by design, since
string-case-modifier
has this:My feature request is to add an option to allow preserving case even for words that extend beyond the boundaries.
What do you think?
The text was updated successfully, but these errors were encountered: