1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-15 09:47:20 +00:00

Fupcase no longer maps ?ß to itself (bug#11309)

* test/src/casefiddle-tests.el (casefiddle-tests-char-casing):
(upcase ?ß) now returns ?ẞ (U+7838), partly for technical reasons but
the previous behaviour was arbitrary and arguably less useful.
Correct upcasing of ß is normally SS, which is what Fupcase returns if
given a string, or (for special purposes) ẞ.
This commit is contained in:
Mattias Engdegård 2020-12-10 10:57:16 +01:00
parent 91432f1ec5
commit 6596b5541d

View File

@ -247,7 +247,8 @@
;; input upcase downcase [titlecase]
(dolist (test '((?a ?A ?a) (?A ?A ?a)
( ) ( )
( ) (?ẞ ?ẞ )
;; We char-upcase ß to ẞ; see bug #11309.
( ?ẞ ) (?ẞ ?ẞ )
(?ⅷ ?Ⅷ ?ⅷ) (?Ⅷ ?Ⅷ ?ⅷ)
( ) ( ) ( )))
(let ((ch (car test))