summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/init-editing.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/init-editing.el b/lisp/init-editing.el
index 0da2b52..d8a4381 100644
--- a/lisp/init-editing.el
+++ b/lisp/init-editing.el
@@ -226,7 +226,7 @@ and '<<<' mark the bounds of the narrowed region.
`(defun ,(intern (concat "km/kill-" thing "-at-point")) ()
,(format "Kill %s at point." thing)
(interactive)
- (goto-char (beginning-of-thing (make-symbol ,thing)))
+ (goto-char (beginning-of-thing (quote ,(make-symbol thing))))
(,(intern (concat "kill-" thing)) 1)))
(km/make-kill-thing-at-point "line")