]> git.eshelyaron.com Git - emacs.git/commitdiff
Add tramp-eshell-directory-change to eshell-first-time-mode-hook
authorMichael Albinus <michael.albinus@gmx.de>
Tue, 22 Nov 2016 09:16:54 +0000 (10:16 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Tue, 22 Nov 2016 09:16:54 +0000 (10:16 +0100)
* lisp/net/tramp.el (tramp-eshell-directory-change): Add it also to
`eshell-first-time-mode-hook'.

lisp/net/tramp.el

index abe8de39b60bfcded54afbb854d3ebe208fafa60..52a4be863c7c8eb6f657398ff868f0a86de0e535 100644 (file)
@@ -4349,11 +4349,14 @@ Only works for Bourne-like shells."
 
 (eval-after-load "esh-util"
   '(progn
-     (tramp-eshell-directory-change)
+     (add-hook 'eshell-first-time-mode-hook
+              'tramp-eshell-directory-change)
      (add-hook 'eshell-directory-change-hook
               'tramp-eshell-directory-change)
      (add-hook 'tramp-unload-hook
               (lambda ()
+                (remove-hook 'eshell-first-time-mode-hook
+                             'tramp-eshell-directory-change)
                 (remove-hook 'eshell-directory-change-hook
                              'tramp-eshell-directory-change)))))