From b302b461c8b75eff29ad979f202b43d305eb19ce Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Wed, 28 Nov 2012 01:47:33 +0900 Subject: [PATCH] when using eshell reuse buffer --- emacs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs.el b/emacs.el index 896eaa3..d88a894 100644 --- a/emacs.el +++ b/emacs.el @@ -1787,7 +1787,7 @@ if arg given, use that eshell buffer, otherwise make new eshell buffer." "open terminal buffer and return that buffer." (interactive) (if (eq system-type 'windows-nt) - (eshell t) + (eshell) (if (require 'multi-term nil t) (multi-term-dedicated-open) (ansi-term "/bin/bash"))))