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: time values Date: Mon, 12 Jul 2004 13:22:25 -0500 (CDT) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <200407121822.i6CIMPg27839@raven.dms.auburn.edu> References: <200407110033.i6B0XLF08165@raven.dms.auburn.edu> <86llhrq7ed.fsf@rumba.de.uu.net> NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1089656746 18548 80.91.224.253 (12 Jul 2004 18:25:46 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 12 Jul 2004 18:25:46 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Mon Jul 12 20:25:25 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 1Bk5US-0008Oj-00 for ; Mon, 12 Jul 2004 20:25:24 +0200 Original-Received: from lists.gnu.org ([199.232.76.165]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1Bk5US-0008Sg-00 for ; Mon, 12 Jul 2004 20:25:24 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Bk5Wm-0007o0-Vd for emacs-devel@quimby.gnus.org; Mon, 12 Jul 2004 14:27:48 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1Bk5Wg-0007nu-Vn for emacs-devel@gnu.org; Mon, 12 Jul 2004 14:27:43 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1Bk5Wf-0007ni-Eh for emacs-devel@gnu.org; Mon, 12 Jul 2004 14:27:42 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Bk5Wf-0007nf-5I for emacs-devel@gnu.org; Mon, 12 Jul 2004 14:27:41 -0400 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Bk5UJ-0005yh-Fc for emacs-devel@gnu.org; Mon, 12 Jul 2004 14:25:15 -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 i6CIP4uE018197; Mon, 12 Jul 2004 13:25:04 -0500 (CDT) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.6+Sun/8.11.6) id i6CIMPg27839; Mon, 12 Jul 2004 13:22:25 -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: <86llhrq7ed.fsf@rumba.de.uu.net> (message from Kai Grossjohann on Sun, 11 Jul 2004 10:23:38 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 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:25625 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:25625 I plan to commit the following minimal patch to tramp.el. Problems remain, which I will discuss later, but they are unrelated to the `time valus' stuff. ===File ~/tramp-diff======================================== *** tramp.el 26 Jun 2004 16:46:18 -0500 1.46 --- tramp.el 12 Jul 2004 10:16:09 -0500 *************** *** 2343,2349 **** ;; (HIGH . LOW)? (let ((mt (visited-file-modtime))) (< (abs (tramp-time-diff ! modtime (list (car mt) (cdr mt)))) 2))) (attr (save-excursion (tramp-send-command --- 2343,2356 ---- ;; (HIGH . LOW)? (let ((mt (visited-file-modtime))) (< (abs (tramp-time-diff ! modtime ! ;; For compatibility, deal with both the old ! ;; (HIGH . LOW) and the new (HIGH LOW) ! ;; return values of `visited-file-modtime'. ! (if (atom (cdr mt)) ! (list (car mt) (cdr mt)) ! mt))) ! 2))) (attr (save-excursion (tramp-send-command ============================================================