diff options
author | William Carroll <wpcarro@gmail.com> | 2020-08-31T13·49+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-08-31T13·49+0100 |
commit | c78b2339f9196c1f521d159892f84dab384d31d5 (patch) | |
tree | b738125f7e75fc4078b2b8c69770627a3c1bd020 /emacs/.emacs.d/wpc/wpc-misc.el | |
parent | 8d02e5a5ef2d4c578a56ff10a0e99bf4ffe40d48 (diff) |
Lint region.el
Business as usual...
Diffstat (limited to 'emacs/.emacs.d/wpc/wpc-misc.el')
-rw-r--r-- | emacs/.emacs.d/wpc/wpc-misc.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/.emacs.d/wpc/wpc-misc.el b/emacs/.emacs.d/wpc/wpc-misc.el index b5ecff44b939..dfa86c2ae139 100644 --- a/emacs/.emacs.d/wpc/wpc-misc.el +++ b/emacs/.emacs.d/wpc/wpc-misc.el @@ -14,6 +14,7 @@ (require 'f) (require 'dash) (require 'constants) +(require 'region) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Configuration @@ -231,7 +232,7 @@ (defun wpc-misc-deadgrep-region () "Run a ripgrep search on the active region." (interactive) - (deadgrep (region/to-string))) + (deadgrep (region-to-string))) (defun wpc-misc-deadgrep-dwim () "If a region is active, use that as the search, otherwise don't." (interactive) |