summaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-01-16 18:17:57 -0500
committerKyle Meyer <kyle@kyleam.com>2014-01-16 18:17:57 -0500
commit7f5c295099d74075b8fcafcc2099fb0eeb104af8 (patch)
treeb9fef91e076beb3d90896010c1e649995973e870 /init
parent42bd964941c40838ded587eeda50bb2b9b397c83 (diff)
downloademacs.d-7f5c295099d74075b8fcafcc2099fb0eeb104af8.tar.gz
Don't assign buffer to open terminal function
Diffstat (limited to 'init')
-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)