From 62741a4214e365526b56abd90e86fbf29b4c4714 Mon Sep 17 00:00:00 2001 From: Oleksii Filonenko Date: Thu, 25 Jul 2019 20:37:44 +0300 Subject: [PATCH] =?UTF-8?q?Remove=20quoting=20in=20=CE=BB!!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-lib.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/core-lib.el b/core/core-lib.el index 0fe864f2f..084f51bd1 100644 --- a/core/core-lib.el +++ b/core/core-lib.el @@ -180,9 +180,9 @@ at the values with which this function was called." (defun λ!! (command &optional arg) "Expands to a command that interactively calls COMMAND with prefix ARG." (declare (doc-string 1)) - `(lambda () (interactive) - (let ((current-prefix-arg ,arg)) - (call-interactively ,command)))) + (lambda () (interactive) + (let ((current-prefix-arg arg)) + (call-interactively command)))) (defalias 'lambda!! 'λ!!) (define-obsolete-function-alias 'FILE! 'file!) ; DEPRECATED