Date: Tue, 17 Jun 2025 03:12:36 GMT From: Ed Maste <emaste@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 5c66d7a2b8a0 - main - =?utf-8?Q?uk.kbd: Fix =E2=82=AC mapping?= Message-ID: <202506170312.55H3CaaI011850@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=5c66d7a2b8a000b6307c0a12e78eb1b50376c9f8 commit 5c66d7a2b8a000b6307c0a12e78eb1b50376c9f8 Author: Ed Maste <emaste@FreeBSD.org> AuthorDate: 2025-06-05 15:18:45 +0000 Commit: Ed Maste <emaste@FreeBSD.org> CommitDate: 2025-06-17 03:12:02 +0000 uk.kbd: Fix € mapping We previously emitted the generic currency sign `¤` for Ctrl+4. Generally speaking the modifer should be AltGr not Ctrl, and this should be the Euro symbol `€`. Fixes: eb8f9028fb38 ("Add the Euro symbol mapping to the UK keyboard keymap.") Fixes: a232c1d130d2 ("Copy country-code .iso syscons keymaps for vt(4)") Fixes: fdd869bd8a89 ("Another rpund of fixes, after checking keymaps for plausibility and with") Reviewed by: ivy Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D50702 --- share/vt/keymaps/uk.kbd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/vt/keymaps/uk.kbd b/share/vt/keymaps/uk.kbd index 4a805fae12b9..261af190dcbe 100644 --- a/share/vt/keymaps/uk.kbd +++ b/share/vt/keymaps/uk.kbd @@ -7,7 +7,7 @@ 002 '1' '!' nop nop '`' '`' nop nop O 003 '2' '"' nul nul '@' '@' nul nul O 004 '3' 0xa3 nop nop '#' '#' nop nop O - 005 '4' '$' 0xa4 0xa4 '4' '$' nop nop O + 005 '4' '$' nop nop 0x20ac '$' nop nop O 006 '5' '%' nop nop '5' '%' nop nop O 007 '6' '^' rs rs '^' '^' rs rs O 008 '7' '&' nop nop '[' '[' esc esc O
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202506170312.55H3CaaI011850>