From 3131bda98c45098d6a41880a26478ee4e6bf396f Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 9 Aug 2018 01:02:47 +0200 Subject: [PATCH] lang/php: fix interpolation in unquoted lambda --- modules/lang/php/config.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/lang/php/config.el b/modules/lang/php/config.el index 216835eaa..1ce136079 100644 --- a/modules/lang/php/config.el +++ b/modules/lang/php/config.el @@ -58,10 +58,10 @@ (unless (file-exists-p (concat php-extras-eldoc-functions-file ".el")) (message "Generating PHP eldoc files...") (require 'async) - (async-start (lambda () - ,(async-inject-variables "\\`\\(load-path\\|php-extras-eldoc-functions-file\\)$") - (require 'php-extras-gen-eldoc) - (php-extras-generate-eldoc-1 t)) + (async-start `(lambda () + ,(async-inject-variables "\\`\\(load-path\\|php-extras-eldoc-functions-file\\)$") + (require 'php-extras-gen-eldoc) + (php-extras-generate-eldoc-1 t)) (lambda (_) (load (concat php-extras-eldoc-functions-file ".el")) (message "PHP eldoc updated!")))))