diff options
| author | Nick Brassel <nick@tzarc.org> | 2024-07-16 09:22:17 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-16 09:22:17 +1000 |
| commit | 8abaa3bc2df4fda13a96d0c5c4ce74b70c974fb7 (patch) | |
| tree | 3075091c9032beb60388dee536ecf0452f79035c /docs/ChangeLog | |
| parent | fef8e7195b09158a9b43ffd05df60128f3cd3ac3 (diff) | |
Add support for key override introspection. (#24120)
Diffstat (limited to 'docs/ChangeLog')
| -rw-r--r-- | docs/ChangeLog/PR24120.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/ChangeLog/PR24120.md b/docs/ChangeLog/PR24120.md new file mode 100644 index 0000000000..5c635349ea --- /dev/null +++ b/docs/ChangeLog/PR24120.md | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | ## Changes requiring user action | ||
| 2 | |||
| 3 | ### Key Override Introspection | ||
| 4 | |||
| 5 | Changes were made to key overrides in order to hook them into the keymap introspection system. | ||
| 6 | |||
| 7 | Key override signature changed from: | ||
| 8 | |||
| 9 | ```c | ||
| 10 | const key_override_t **key_overrides = (const key_override_t *[]){ | ||
| 11 | ``` | ||
| 12 | |||
| 13 | to: | ||
| 14 | |||
| 15 | ```c | ||
| 16 | const key_override_t *key_overrides[] = { | ||
| 17 | ``` | ||
| 18 | |||
| 19 | The list of key overrides now does not need to be `NULL`-terminated. | ||
