summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init/km-func.el5
1 files changed, 1 insertions, 4 deletions
diff --git a/init/km-func.el b/init/km-func.el
index 256f570..b4f670d 100644
--- a/init/km-func.el
+++ b/init/km-func.el
@@ -183,10 +183,7 @@ KILLARG."
(defun km/open-external-terminal ()
(interactive)
- (let ((bufname (get-buffer-create "*External terminal*")))
- (with-current-buffer bufname
- (insert "Starting terminal"))
- (start-process "ext-term" bufname km/terminal)))
+ (start-process "ext-term" nil km/terminal))
(define-key external-map "t" 'km/open-external-terminal)