From bd7769ea738df96e8d49da2c11e4b9a891fd7c63 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 18 Aug 2010 23:36:25 -0400 Subject: [PATCH] Replace kill-region with delete-region in the indentation function, fixing the annoying yank bug. --- nagios-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.43.2