Change kill-region to delete-region
This commit is contained in:
parent
666f5925d2
commit
1cfc93e10d
@ -586,7 +586,7 @@ command if that happens to be appropriate."
|
|||||||
(save-excursion
|
(save-excursion
|
||||||
(set-buffer buf)
|
(set-buffer buf)
|
||||||
(let ((p (point)))
|
(let ((p (point)))
|
||||||
(kill-region (point-min) (point-max))
|
(delete-region (point-min) (point-max))
|
||||||
(insert-buffer (gdb-get-create-instance-buffer
|
(insert-buffer (gdb-get-create-instance-buffer
|
||||||
instance
|
instance
|
||||||
'gdb-partial-output-buffer))
|
'gdb-partial-output-buffer))
|
||||||
@ -755,7 +755,7 @@ buffer."
|
|||||||
(set-buffer
|
(set-buffer
|
||||||
(gdb-get-create-instance-buffer
|
(gdb-get-create-instance-buffer
|
||||||
instance 'gdb-partial-output-buffer))
|
instance 'gdb-partial-output-buffer))
|
||||||
(kill-region (point-min) (point-max))))
|
(delete-region (point-min) (point-max))))
|
||||||
|
|
||||||
;;
|
;;
|
||||||
;; Instance Buffers.
|
;; Instance Buffers.
|
||||||
|
Loading…
Reference in New Issue
Block a user