diff options
author | Kyle Meyer <kyle@kyleam.com> | 2022-03-20 21:31:32 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2022-03-20 21:31:32 -0400 |
commit | f15922a57cd6177c9c945d3390a6b9918883415d (patch) | |
tree | 330a78831171a1c3b8326cd48b5ec64356c55e9d /lisp/org/org-mouse.el | |
parent | 9fcdd5b63fcb5f9c6fba9884911f305806980fd5 (diff) | |
download | emacs-f15922a57cd6177c9c945d3390a6b9918883415d.tar.gz emacs-f15922a57cd6177c9c945d3390a6b9918883415d.tar.bz2 emacs-f15922a57cd6177c9c945d3390a6b9918883415d.zip |
Update to Org 9.5.2-25-gaf6f12
Diffstat (limited to 'lisp/org/org-mouse.el')
-rw-r--r-- | lisp/org/org-mouse.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org/org-mouse.el b/lisp/org/org-mouse.el index 8d5be425453..20c20acc320 100644 --- a/lisp/org/org-mouse.el +++ b/lisp/org/org-mouse.el @@ -295,7 +295,7 @@ nor a function, elements of KEYWORDS are used directly." ((functionp itemformat) (funcall itemformat keyword)) ((stringp itemformat) (format itemformat keyword)) (t keyword)) - (list 'funcall function keyword) + `(funcall #',function ,keyword) :style (cond ((null selected) t) ((functionp selected) 'toggle) |