aboutsummaryrefslogtreecommitdiffstats
path: root/docs/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ChangeLog')
-rw-r--r--docs/ChangeLog/PR24120.md19
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 @@
+## Changes requiring user action
+
+### Key Override Introspection
+
+Changes were made to key overrides in order to hook them into the keymap introspection system.
+
+Key override signature changed from:
+
+```c
+const key_override_t **key_overrides = (const key_override_t *[]){
+```
+
+to:
+
+```c
+const key_override_t *key_overrides[] = {
+```
+
+The list of key overrides now does not need to be `NULL`-terminated.