From: Eli Zaretskii <eliz@gnu.org>
To: "Thomas Voss" <mail@thomasvoss.com>
Cc: 74155@debbugs.gnu.org
Subject: bug#74155: upcasing strings doesn’t respect standard-case-table
Date: Fri, 01 Nov 2024 16:07:38 +0200 [thread overview]
Message-ID: <865xp711zp.fsf@gnu.org> (raw)
In-Reply-To: <D5AUFJMCB3FX.70QINI98XI22@thomasvoss.com> (bug-gnu-emacs@gnu.org)
> Date: Fri, 01 Nov 2024 13:33:13 +0100
> From: "Thomas Voss" via "Bug reports for GNU Emacs,
> the Swiss army knife of text editors" <bug-gnu-emacs@gnu.org>
>
> As of 2017 (I believe), the capital eszett (ẞ) was adopted into the
> German alphabet as the uppercase variable of ß which was previously (and
> which still can be) uppercased to ‘SS’. Since I prefer to use the newer
> ẞ to the older SS, I have the following line in my configuration:
>
> (set-case-syntax-pair ?ẞ ?ß (standard-case-table))
>
> When working with characters, this behaves as intended:
>
> (upcase ?ß)
> ⇒ ?ẞ
>
> However when working with strings, it doesn’t:
>
> (upcase "ß")
> ⇒ "SS"
>
> The same goes for the ‘upcase-word’ and ‘upcase-dwim’ functions which
> still upcase ß to SS. It seems that whatever code that is handling
> case-conversions for multi-character inputs is not respecting the current
> case table.
This is a feature: characters which have the 'special-uppercase'
property defined for them by the Unicode Standard use their special
upper-case rules that override the case-table. If you don't want
that, force the special-uppercase property of ß to be nil:
(upcase "ß")
=> "SS"
(put-char-code-property ?ß 'special-uppercase nil)
(upcase "ß")
=> "ẞ"
prev parent reply other threads:[~2024-11-01 14:07 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-01 12:33 bug#74155: upcasing strings doesn’t respect standard-case-table Thomas Voss via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-11-01 14:07 ` Eli Zaretskii [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=865xp711zp.fsf@gnu.org \
--to=eliz@gnu.org \
--cc=74155@debbugs.gnu.org \
--cc=mail@thomasvoss.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.