From 555cc79d893ce702a4b5f66387f7bb5f731dc6e5 Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Fri, 12 Apr 2013 19:05:40 +0300 Subject: [PATCH] Minor change --- core/prelude-editor.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/prelude-editor.el b/core/prelude-editor.el index 28e14e2..32bcf27 100644 --- a/core/prelude-editor.el +++ b/core/prelude-editor.el @@ -179,7 +179,7 @@ Will only occur if prelude-whitespace is also enabled." ;; note - this should be after volatile-highlights is required ;; add the ability to copy and cut the current line, without marking it -(defadvice kill-ring-save (before slick-copy activate compile) +(defadvice kill-ring-save (before smart-copy activate compile) "When called interactively with no active region, copy a single line instead." (interactive (if mark-active (list (region-beginning) (region-end)) @@ -187,7 +187,7 @@ Will only occur if prelude-whitespace is also enabled." (list (line-beginning-position) (line-beginning-position 2))))) -(defadvice kill-region (before slick-cut activate compile) +(defadvice kill-region (before smart-cut activate compile) "When called interactively with no active region, kill a single line instead." (interactive (if mark-active (list (region-beginning) (region-end))