From 5ee38deeffc1e22d8036339fc90929ecf94b5c97 Mon Sep 17 00:00:00 2001 From: km Date: Mon, 29 Feb 2016 13:09:04 -0500 Subject: [PATCH] Fix use of deprecated function avy--with-avy-keys --- layers/+spacemacs/spacemacs-ui/packages.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/layers/+spacemacs/spacemacs-ui/packages.el b/layers/+spacemacs/spacemacs-ui/packages.el index 108d67282..adc3c4cfd 100644 --- a/layers/+spacemacs/spacemacs-ui/packages.el +++ b/layers/+spacemacs/spacemacs-ui/packages.el @@ -56,10 +56,10 @@ (defun spacemacs/ace-buffer-links () "Ace jump to links in `spacemacs' buffer." (interactive) - (let ((res (avy--with-avy-keys spacemacs/ace-buffer-links - (avy--process - (spacemacs//collect-spacemacs-buffer-links) - #'avy--overlay-pre)))) + (let ((res (avy-with spacemacs/ace-buffer-links + (avy--process + (spacemacs//collect-spacemacs-buffer-links) + #'avy--overlay-pre)))) (when res (goto-char (1+ res)) (widget-button-press (point))))))))