about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/functions.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/.emacs.d/wpc/functions.el')
-rw-r--r--emacs/.emacs.d/wpc/functions.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/wpc/functions.el b/emacs/.emacs.d/wpc/functions.el
index d9f1a1e96017..24f2516be455 100644
--- a/emacs/.emacs.d/wpc/functions.el
+++ b/emacs/.emacs.d/wpc/functions.el
@@ -111,7 +111,7 @@
 (defun wpc/evil-replace-under-point ()
   "Faster than typing %s//thing/g."
   (interactive)
-  (let ((term (s-replace "/" "\\/" (symbol/to-string (symbol-at-point)))))
+  (let ((term (s-replace "/" "\\/" (symbol-to-string (symbol-at-point)))))
     (save-excursion
       (evil-ex (concat "%s/\\b" term "\\b/")))))