From: Steve Y. <yo...@us...> - 2002-01-02 16:51:12
|
Update of /cvsroot/tramp/tramp/lisp In directory usw-pr-cvs1:/tmp/cvs-serv19563/lisp Modified Files: ChangeLog tramp.el Log Message: 2002-01-03 Steve Youngs <yo...@xe...> * tramp.el (tramp-find-shell): Change order for choice of shell, put bash first. Index: ChangeLog =================================================================== RCS file: /cvsroot/tramp/tramp/lisp/ChangeLog,v retrieving revision 2.60 retrieving revision 2.61 diff -C2 -d -r2.60 -r2.61 *** ChangeLog 2002/01/02 14:14:28 2.60 --- ChangeLog 2002/01/02 16:51:08 2.61 *************** *** 1,2 **** --- 1,7 ---- + 2002-01-03 Steve Youngs <yo...@xe...> + + * tramp.el (tramp-find-shell): Change order for choice of shell, + put bash first. + 2002-01-02 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> Index: tramp.el =================================================================== RCS file: /cvsroot/tramp/tramp/lisp/tramp.el,v retrieving revision 2.63 retrieving revision 2.64 diff -C2 -d -r2.63 -r2.64 *** tramp.el 2002/01/02 14:14:28 2.63 --- tramp.el 2002/01/02 16:51:08 2.64 *************** *** 3035,3041 **** (setq shell (or (tramp-find-executable multi-method method user host ! "ksh" tramp-remote-path t) (tramp-find-executable multi-method method user host ! "bash" tramp-remote-path t))) (unless shell (error "Couldn't find a shell which groks tilde expansion")) --- 3035,3041 ---- (setq shell (or (tramp-find-executable multi-method method user host ! "bash" tramp-remote-path t) (tramp-find-executable multi-method method user host ! "ksh" tramp-remote-path t))) (unless shell (error "Couldn't find a shell which groks tilde expansion")) |