From 0aa8140e22b9191ddff7671217490d4ab6d0bbe4 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 19 Sep 2020 14:05:31 +0200 Subject: [PATCH] Do not function-quote in db/frequently-used-features Apparently, this does not match with the `function' requirement of the customization type definition. --- site-lisp/db-customize.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site-lisp/db-customize.el b/site-lisp/db-customize.el index 310f522..1e58fcb 100644 --- a/site-lisp/db-customize.el +++ b/site-lisp/db-customize.el @@ -140,7 +140,7 @@ in the main agenda view." '(("Mail" ?m db/gnus) ("Agenda" ?a db/org-agenda) ("Init File" ?i db/find-user-init-file) - ("Main Org File" ?o #'(lambda () (interactive) (find-file db/org-default-org-file))) + ("Main Org File" ?o (lambda () (interactive) (find-file db/org-default-org-file))) ("EMMS" ?M emms) ("Shell" ?s db/run-or-hide-shell) ("EShell" ?e db/run-or-hide-eshell)