From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kai Grossjohann Newsgroups: gmane.emacs.devel Subject: Re: Feature freeze and Tramp? Date: Sat, 08 May 2004 12:34:23 +0200 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <87wu3n4380.fsf@emptyhost.emptydomain.de> References: <87zn8qlleb.fsf@emptyhost.emptydomain.de> <87d65gj5j2.fsf@emptyhost.emptydomain.de> <200405080234.i482YKE24109@raven.dms.auburn.edu> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1084012675 11359 80.91.224.253 (8 May 2004 10:37:55 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 8 May 2004 10:37:55 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Sat May 08 12:37:47 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BMPDH-0005rP-00 for ; Sat, 08 May 2004 12:37:47 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BMPDH-0000eG-00 for ; Sat, 08 May 2004 12:37:47 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.33) id 1BMPCd-0001qI-LO for emacs-devel@quimby.gnus.org; Sat, 08 May 2004 06:37:07 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.33) id 1BMPC8-0001Hd-L0 for emacs-devel@gnu.org; Sat, 08 May 2004 06:36:36 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.33) id 1BMPAy-0007ue-MV for emacs-devel@gnu.org; Sat, 08 May 2004 06:35:57 -0400 Original-Received: from [80.91.224.249] (helo=main.gmane.org) by monty-python.gnu.org with esmtp (Exim 4.33) id 1BMP9n-0006Yl-05 for emacs-devel@gnu.org; Sat, 08 May 2004 06:34:11 -0400 Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1BMP9m-0005Wg-00 for ; Sat, 08 May 2004 12:34:10 +0200 Original-Received: from 213-203-244-156.kunde.vdserver.de ([213.203.244.156]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 08 May 2004 12:34:10 +0200 Original-Received: from kai by 213-203-244-156.kunde.vdserver.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 08 May 2004 12:34:10 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: emacs-devel@gnu.org Original-Lines: 25 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 213-203-244-156.kunde.vdserver.de User-Agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.2 (gnu/linux) Cancel-Lock: sha1:bZWdDLwAQGMWsLQOk4f+sy0UbuA= X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:22934 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:22934 Luc Teirlinck writes: > I do _not_ believe this is new behavior connected to the update. > But why does tramp insert 215 lines into the .bash_history on the > remote machine? (This is annoying.) Yes, I agree. Tramp tries to turn that off, but maybe it is not working for some reason. During initialization of the remote shell connection, Tramp sends the following command to the remote end: HISTFILE=$HOME/.tramp_history; HISTSIZE=1 So, perhaps the above command is not the right command for your remote shell, or perhaps the command is not executed properly by Tramp. If you (setq tramp-debug-buffer t) then you can see in the *debug tramp/foo* buffer whether or not Tramp sends the line to the remote end. Could you please check this? Could you also check whether the command needs to be changed for your case to have the desired effect? Thanks, Kai