Submitted upstream: https://github.com/benblazak/ergodox-firmware/pull/100 diff --git a/src/lib/key-functions/public/special.c b/src/lib/key-functions/public/special.c index 42aba45..6488137 100644 --- a/src/lib/key-functions/public/special.c +++ b/src/lib/key-functions/public/special.c @@ -102,9 +102,9 @@ void kbfun_2_keys_capslock_press_release(void) { static uint8_t numpad_layer_id; static inline void numpad_toggle_numlock(void) { - _kbfun_press_release(true, KEY_LockingNumLock); + _kbfun_press_release(true, KEYPAD_NumLock_Clear); usb_keyboard_send(); - _kbfun_press_release(false, KEY_LockingNumLock); + _kbfun_press_release(false, KEYPAD_NumLock_Clear); usb_keyboard_send(); } > Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/cran.scm
AgeCommit message (Expand)Author
2021-12-18import: cran: Fix description->package test....This follows up on commit 5cd1019488c44081aaf030fbe8bc357d78daef23. * tests/cran.scm (description): Include a very long line. (description->package): Update the golden description to match the paragraph filling now performed by BEAUTIFY-DESCRIPTION. Tobias Geerinckx-Rice
2021-07-11import: cran: Emit new-style package inputs....* guix/import/cran.scm (format-inputs): Emit symbols or 'specification->package' calls. (maybe-inputs): Wrap in 'list' instead of 'quasiquote'. * tests/cran.scm ("description->package"): Adjust accordingly. Ludovic Courtès
2020-01-16import: cran: Avoid uses of '@@' in the tests....* guix/import/cran.scm (description->alist, description->package): Export. <top level>: Set! 'listify'. * tests/cran.scm (description-alist, "description->package"): Remove use of '@@' to access the relevant bindings. Ludovic Courtès