Skip to content

Commit

Permalink
core: Fix typo in definition AC_g
Browse files Browse the repository at this point in the history
  • Loading branch information
39aldo39 authored Nov 14, 2016
1 parent 093bfd6 commit 54a1934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmk_core/common/actionmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define AC_c(kc) ACTION_MODS_KEY(MOD_LCTL, KC_##kc)
#define AC_s(kc) ACTION_MODS_KEY(MOD_LSFT, KC_##kc)
#define AC_a(kc) ACTION_MODS_KEY(MOD_LALT, KC_##kc)
#define AC_g(kc) ACTION_MODS_KEY(MOD_LSFT, KC_##kc)
#define AC_g(kc) ACTION_MODS_KEY(MOD_LGUI, KC_##kc)

/* Normal key */
#define AC_NO ACTION_KEY(KC_NO)
Expand Down

0 comments on commit 54a1934

Please sign in to comment.