[Bug 274474] [PATCH] setxkbmap: Fix Lstroke mapping for Canadian Multingual layout
Date: Sun, 15 Oct 2023 07:28:04 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274474 Bug ID: 274474 Summary: [PATCH] setxkbmap: Fix Lstroke mapping for Canadian Multingual layout Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: ports-bugs@FreeBSD.org Reporter: christos@margiolis.net The Lstroke (Ł/ł letter) mapping was inverted. Maybe the appropriate maintainer can send this to upstream. ``` diff --git a/usr/local/share/X11/xkb/symbols/ca b/usr/local/share/X11/xkb/symbols/ca index 3d458f0..e5ca40c 100644 --- a/usr/local/share/X11/xkb/symbols/ca +++ b/usr/local/share/X11/xkb/symbols/ca @@ -343,7 +343,7 @@ xkb_symbols "multix" { key.type[group1]="EIGHT_LEVEL_SEMIALPHABETIC"; key <AD01> {[ q, Q, NoSymbol, NoSymbol, NoSymbol, Greek_OMEGA ]}; - key <AD02> {[ w, W, NoSymbol, NoSymbol, Lstroke, lstroke ]}; + key <AD02> {[ w, W, NoSymbol, NoSymbol, lstroke, Lstroke ]}; key <AD03> {[ e, E, NoSymbol, NoSymbol, oe, OE ]}; key <AD04> {[ r, R, NoSymbol, NoSymbol, paragraph, registered ]}; key <AD05> {[ t, T, NoSymbol, NoSymbol, tslash, Tslash ]}; ``` -- You are receiving this mail because: You are the assignee for the bug.