Commit 500b260bcfd335b42b7813f7ab2d48ac9998cbd4

Pierre Le Marre 2025-03-28T09:38:58

xkbcomp: Fix parser failure on floating-point numbers Before this commit we used `strtold`, which depends on the locale. But the XKB syntax is fixed and uses a period as decimal separator. So ensure the syntax is correct without relying on `strtold` and truncate the result, as the parser does not use floating-point numbers.