diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-02-21 22:02:50 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-02-28 00:29:49 -0500 |
commit | 6b4001dbeea32cae9df7e15efeacc1eac5b4fdee (patch) | |
tree | e5ab7cd7157c2b15dbcc13bea85ff035b56d66b1 /lisp | |
parent | 9b06d2b0c5edc3feffc13da89a28b7b48ac55d3c (diff) | |
download | emacs.d-6b4001dbeea32cae9df7e15efeacc1eac5b4fdee.tar.gz |
Tweak make-kill-thing-at-point
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-editing.el | 2 |
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") |