diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2022-11-20 05:17:47 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2022-11-20 05:17:47 +0100 |
| commit | 59c412cecd009e606e9cf3cd16b295b368c514a6 (patch) | |
| tree | 8ce5ecdb7582524ec77f49f902571e9f7536bdd3 | |
| parent | ec6d21a939a5449377bebeb68cb33ef566c5c296 (diff) | |
Fix latest commit
| -rw-r--r-- | extensions/corfu-popupinfo.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/extensions/corfu-popupinfo.el b/extensions/corfu-popupinfo.el index 08e0246..9bdfbdf 100644 --- a/extensions/corfu-popupinfo.el +++ b/extensions/corfu-popupinfo.el @@ -157,11 +157,11 @@ all values are in pixels relative to the origin. See ;; BUG: company-location may throw errors if location is not found (loc (ignore-errors (funcall fun candidate))) (buf (or (and (bufferp (car loc)) (car loc)) - (let ((inhibit-message . t) - (enable-dir-local-variables . nil) - (enable-local-variables . :safe) - (non-essential . t) - (delay-mode-hooks . t)) + (let ((inhibit-message t) + (enable-dir-local-variables nil) + (enable-local-variables :safe) + (non-essential t) + (delay-mode-hooks t)) (find-file-noselect (car loc) t))))) (unwind-protect (with-current-buffer buf |
