mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-26 07:33:39 +00:00
org-mac-link: Do not quote lambdas
* contrib/lisp/org-mac-link.el (org-mac-grab-link): Do not quote lambdas.
This commit is contained in:
parent
2e251821ce
commit
e43d0abdd1
@ -256,7 +256,7 @@ When done, go grab the link, and insert it at point."
|
||||
input)
|
||||
|
||||
;; Create the menu string for the keymap
|
||||
(mapc '(lambda (descriptor)
|
||||
(mapc (lambda (descriptor)
|
||||
(when (elt descriptor 3)
|
||||
(setf menu-string (concat menu-string
|
||||
"[" (elt descriptor 0) "]"
|
||||
@ -267,7 +267,7 @@ When done, go grab the link, and insert it at point."
|
||||
;; Prompt the user, and grab the link
|
||||
(message menu-string)
|
||||
(setq input (read-char-exclusive))
|
||||
(mapc '(lambda (descriptor)
|
||||
(mapc (lambda (descriptor)
|
||||
(let ((key (elt (elt descriptor 0) 0))
|
||||
(active (elt descriptor 3))
|
||||
(grab-function (elt descriptor 2)))
|
||||
|
Loading…
Reference in New Issue
Block a user