From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: Re: Feature freeze and Tramp? Date: Tue, 11 May 2004 19:53:33 -0500 (CDT) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <200405120053.i4C0rX612735@raven.dms.auburn.edu> References: <87zn8qlleb.fsf@emptyhost.emptydomain.de> <87d65gj5j2.fsf@emptyhost.emptydomain.de> <200405080234.i482YKE24109@raven.dms.auburn.edu> <87wu3n4380.fsf@emptyhost.emptydomain.de> <200405090140.i491eTW28920@raven.dms.auburn.edu> <87n04gzb7h.fsf@emptyhost.emptydomain.de> <200405110249.i4B2nND22278@raven.dms.auburn.edu> <87sme7o2zu.fsf@emptyhost.emptydomain.de> NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1084324429 12289 80.91.224.253 (12 May 2004 01:13:49 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 12 May 2004 01:13:49 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Wed May 12 03:13:41 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 1BNiJZ-0000SQ-00 for ; Wed, 12 May 2004 03:13:41 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BNiJZ-0001eu-00 for ; Wed, 12 May 2004 03:13:41 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BNiJD-000441-Hz for emacs-devel@quimby.gnus.org; Tue, 11 May 2004 21:13:19 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.34) id 1BNiEM-0002Ex-B0 for emacs-devel@gnu.org; Tue, 11 May 2004 21:08:18 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.34) id 1BNi5U-0007oN-1G for emacs-devel@gnu.org; Tue, 11 May 2004 20:59:39 -0400 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BNi08-0006nD-NG for emacs-devel@gnu.org; Tue, 11 May 2004 20:53:37 -0400 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.12.10/8.12.10) with ESMTP id i4C0rYTS004048; Tue, 11 May 2004 19:53:35 -0500 (CDT) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.6+Sun/8.11.6) id i4C0rX612735; Tue, 11 May 2004 19:53:33 -0500 (CDT) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: kai@emptydomain.de In-reply-to: <87sme7o2zu.fsf@emptyhost.emptydomain.de> (message from Kai Grossjohann on Tue, 11 May 2004 09:08:05 +0200) 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:23201 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:23201 There was a small typo in my previous patch: --- 5621,5629 ---- "stty -onlcr")))) (erase-buffer) (tramp-message ! 9 "Waiting 30s for `export HISTFILE=$HOME/.tramp_history HISTSIZE=1; export HISTFILE; export HISTSIZE'") That leading `export' in the `tramp-message' should not be there and there should be a semicolon after .tramp-history. These typos occurred only in the message however, the actual command sent was correct. Corrected version: ===File ~/tramp-diff======================================== *** tramp.el 07 May 2004 18:33:46 -0500 1.43 --- tramp.el 11 May 2004 19:32:58 -0500 *************** *** 5621,5629 **** "stty -onlcr")))) (erase-buffer) (tramp-message ! 9 "Waiting 30s for `HISTFILE=$HOME/.tramp_history; HISTSIZE=1'") (tramp-send-command-internal multi-method method user host ! "HISTFILE=$HOME/.tramp_history; HISTSIZE=1") (erase-buffer) (tramp-message 9 "Waiting 30s for `set +o vi +o emacs'") (tramp-send-command-internal multi-method method user host --- 5621,5629 ---- "stty -onlcr")))) (erase-buffer) (tramp-message ! 9 "Waiting 30s for `HISTFILE=$HOME/.tramp_history; HISTSIZE=1; export HISTFILE; export HISTSIZE'") (tramp-send-command-internal multi-method method user host ! "HISTFILE=$HOME/.tramp_history; HISTSIZE=1; export HISTFILE; export HISTSIZE") (erase-buffer) (tramp-message 9 "Waiting 30s for `set +o vi +o emacs'") (tramp-send-command-internal multi-method method user host ============================================================