Change kill-region to delete-region
This commit is contained in:
parent
666f5925d2
commit
1cfc93e10d
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue