Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
"t" is not a function
  • Loading branch information
Mike Lockhart authored and Mike Lockhart committed Mar 25, 2018
1 parent 359258e commit 979d01a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions layers/mjl/keybindings.el
Expand Up @@ -3,12 +3,12 @@
;; File: layers/mjl/keybindings.el ;; File: layers/mjl/keybindings.el
;; Created: 2015-12-20 ;; Created: 2015-12-20
;; Language: Emacs-Lisp ;; Language: Emacs-Lisp
;; Time-stamp: <2017-03-06 23:45:30 mjl> ;; Time-stamp: <2018-03-25 23:18:07 mjl>
;; Platform: Emacs (Spacemacs) ;; Platform: Emacs (Spacemacs)
;; OS: N/A ;; OS: N/A
;; Author: [MJL] Michael J. Lockhart <sinewalker@gmail.com> ;; Author: [MJL] Michael J. Lockhart <sinewalker@gmail.com>
;; ;;
;; Rights: Copyright © 2015-2017 Michael James Lockhart, B.App.Comp(HONS) ;; Rights: Copyright © 2015-2018 Michael James Lockhart, B.App.Comp(HONS)
;; ;;
;; PURPOSE: Keybindings for my personal layer "mjl" ;; PURPOSE: Keybindings for my personal layer "mjl"
;; ;;
Expand Down Expand Up @@ -188,7 +188,7 @@
((eq system-type 'darwin) ;; on Mac, <menu> key maps to different keys: ((eq system-type 'darwin) ;; on Mac, <menu> key maps to different keys:
(global-set-key (kbd "C-j") 'helm-M-x)) ;; Railwaycat emacs-mac, (global-set-key (kbd "C-j") 'helm-M-x)) ;; Railwaycat emacs-mac,
;(global-set-key (kbd "C-p") 'helm-M-x)) ;; vanilla brew emacs ;(global-set-key (kbd "C-p") 'helm-M-x)) ;; vanilla brew emacs
((t) (t
(global-set-key (kbd "<menu>") 'helm-M-x))) (global-set-key (kbd "<menu>") 'helm-M-x)))


; cannot use the kbd macro for these keys? ; cannot use the kbd macro for these keys?
Expand Down

0 comments on commit 979d01a

Please sign in to comment.