summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-04-16 22:59:52 -0400
committerKyle Meyer <kyle@kyleam.com>2020-04-16 23:01:41 -0400
commit9032a4c79ddd7d595b5db79344975e6eb60967c8 (patch)
tree8e56ba06bb21cbafeb36513f70fc0890cef959f8 /init.el
parent337306a0d4fdccbaa73ae946a60433de82fffea0 (diff)
downloademacs.d-9032a4c79ddd7d595b5db79344975e6eb60967c8.tar.gz
helm-swoop: Change helm-swoop-pre-input-function
With an upgrade of helm (didn't note the version at the time, unfortunately), this triggered a type error.
Diffstat (limited to 'init.el')
-rw-r--r--init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.el b/init.el
index bd3c505..ab4677a 100644
--- a/init.el
+++ b/init.el
@@ -1338,7 +1338,7 @@
(use-package helm-swoop
:init
- (setq helm-swoop-pre-input-function (lambda () nil))
+ (setq helm-swoop-pre-input-function (lambda () ""))
(define-key search-map "k" #'helm-swoop))