Change kill-region to delete-region

This commit is contained in:
Jim Kingdon 1994-05-11 15:03:35 +00:00
parent 666f5925d2
commit 1cfc93e10d
1 changed files with 2 additions and 2 deletions

View File

@ -586,7 +586,7 @@ command if that happens to be appropriate."
(save-excursion
(set-buffer buf)
(let ((p (point)))
(kill-region (point-min) (point-max))
(delete-region (point-min) (point-max))
(insert-buffer (gdb-get-create-instance-buffer
instance
'gdb-partial-output-buffer))
@ -755,7 +755,7 @@ buffer."
(set-buffer
(gdb-get-create-instance-buffer
instance 'gdb-partial-output-buffer))
(kill-region (point-min) (point-max))))
(delete-region (point-min) (point-max))))
;;
;; Instance Buffers.