From f66d3dae8542a413d397a905885dff2d83e1c95c Mon Sep 17 00:00:00 2001 From: Magne Lauritzen Date: Mon, 16 Oct 2023 20:59:34 +0100 Subject: [PATCH] Raise Circumflex from the grave in sendstring_french.h There are two circumflexes on the french keyboard layout: 1) One AltGr-accessible one on key 9. Not a dead key, does not require an extra space afterwards to appear. 2) One on the key to the right of P (US ANSI left bracket). Dead, does require an extra space afterwards to appear. sendstring_french.h had defined circumflex as being dead **and** AltGr-accessible on key 9, resulting in all circumflexes being followed by a space. This commit marks it as being "alive" so no extra space is sent afterwards. --- quantum/keymap_extras/sendstring_french.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantum/keymap_extras/sendstring_french.h b/quantum/keymap_extras/sendstring_french.h index 0e585ec0937..76591c078fb 100644 --- a/quantum/keymap_extras/sendstring_french.h +++ b/quantum/keymap_extras/sendstring_french.h @@ -76,7 +76,7 @@ const uint8_t ascii_to_dead_lut[16] PROGMEM = { KCLUT_ENTRY(0, 0, 0, 0, 0, 0, 0, 0), KCLUT_ENTRY(0, 0, 0, 0, 0, 0, 0, 0), KCLUT_ENTRY(0, 0, 0, 0, 0, 0, 0, 0), - KCLUT_ENTRY(0, 0, 0, 0, 0, 0, 1, 0), + KCLUT_ENTRY(0, 0, 0, 0, 0, 0, 0, 0), KCLUT_ENTRY(1, 0, 0, 0, 0, 0, 0, 0), KCLUT_ENTRY(0, 0, 0, 0, 0, 0, 0, 0), KCLUT_ENTRY(0, 0, 0, 0, 0, 0, 0, 0),