From 69143b20f8e070569393d1f2c12a323b2390545a Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 27 Jun 2018 02:57:02 +0200 Subject: [PATCH] feature/evil: remove macroexpand Snuck into a commit --- modules/feature/evil/config.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/feature/evil/config.el b/modules/feature/evil/config.el index f32ff1142..7703b3498 100644 --- a/modules/feature/evil/config.el +++ b/modules/feature/evil/config.el @@ -128,9 +128,8 @@ variable for an explanation of the defaults (in comments). See ;; Other commands can make use of this (evil-define-interactive-code "" :ex-arg buffer-match (list (if (evil-ex-p) evil-ex-argument))) - (macroexpand ' - (evil-define-interactive-code "" - :ex-arg global-match (list (if (evil-ex-p) evil-ex-argument)))) + (evil-define-interactive-code "" + :ex-arg global-match (list (if (evil-ex-p) evil-ex-argument))) ;; By default :g[lobal] doesn't highlight matches in the current buffer. I've ;; got to write my own argument type and interactive code to get it to do so.