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.
This commit is contained in:
Magne Lauritzen 2023-10-16 20:59:34 +01:00 committed by GitHub
parent 81a3aa025c
commit f66d3dae85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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),