# HG changeset patch # User FUJIWARA Katsunori # Date 1150470388 -32400 # Node ID d1a7c8a5b835d71c4da7398e6858cd6f7bfe2a42 # Parent 134227b82a963ea0adc172c1ad169dc0bbfef53f Emacs: use delete-region instead of kill-* functions. This patch eliminates `kill-line' which taints kill-ring, and `kill-entire-line' which is specific for XEmacs. diff -r 134227b82a96 -r d1a7c8a5b835 contrib/mercurial.el --- a/contrib/mercurial.el Sat Jun 17 18:36:04 2006 +0200 +++ b/contrib/mercurial.el Sat Jun 17 00:06:28 2006 +0900 @@ -712,7 +712,8 @@ (let ((pos (point))) (insert (documentation 'hg-mode)) (goto-char pos) - (kill-line)))) + (end-of-line 1) + (delete-region pos (point))))) (defun hg-add (path) "Add PATH to the Mercurial repository on the next commit. @@ -959,8 +960,8 @@ (defun hg-log-mode () "Mode for viewing a Mercurial change log." (goto-char (point-min)) - (when (looking-at "^searching for changes") - (kill-entire-line)) + (when (looking-at "^searching for changes.*$") + (delete-region (match-beginning 0) (match-end 0))) (run-hooks 'hg-log-mode-hook)) (defun hg-log (path &optional rev1 rev2 log-limit)