From: Michael Orlitzky Date: Thu, 19 Aug 2010 03:36:25 +0000 (-0400) Subject: Replace kill-region with delete-region in the indentation function, fixing the annoyi... X-Git-Tag: v0.2~1 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=nagios-mode.git;a=commitdiff_plain;h=bd7769ea738df96e8d49da2c11e4b9a891fd7c63 Replace kill-region with delete-region in the indentation function, fixing the annoying yank bug. --- diff --git a/nagios-mode.el b/nagios-mode.el index ecf5aff..fabfc76 100644 --- a/nagios-mode.el +++ b/nagios-mode.el @@ -54,7 +54,7 @@ (setq first-char-pos (+ bol first-char-offset)) - (kill-region bol first-char-pos) + (delete-region bol first-char-pos) (beginning-of-line)