Change &keys -> &key in cl-defun
These were latent bugs.
This commit is contained in:
parent
15d889fa0e
commit
c078f04526
2 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@
|
|||
chrome/open-urls))
|
||||
|
||||
;; TODO: Support optional kwargs.
|
||||
(cl-defun chrome/open-url (url &keys new-window?)
|
||||
(cl-defun chrome/open-url (url &key new-window?)
|
||||
"Opens `URL' in google-chrome.
|
||||
Will open without toolbars if APP-MODE? is t."
|
||||
(shell-command (s-concat
|
||||
|
|
|
@ -79,7 +79,7 @@
|
|||
(iso/as-to #'symbol-name)
|
||||
)
|
||||
|
||||
(cl-defun iso/new (x &keys to)
|
||||
(cl-defun iso/new (x &key to)
|
||||
"Create a new isomorphism of X mapping to TO."
|
||||
(let ((from (iso/classify x)))
|
||||
(prelude/assert (iso/exists? to from))
|
||||
|
|
Loading…
Reference in a new issue