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: Sun, 11 Jul 2004 22:26:14 -0500 (CDT) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <200407120326.i6C3QEY15177@raven.dms.auburn.edu> References: <200407110033.i6B0XLF08165@raven.dms.auburn.edu> <86llhrq7ed.fsf@rumba.de.uu.net> <200407111513.i6BFD9T09204@raven.dms.auburn.edu> NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1089602971 17636 80.91.224.253 (12 Jul 2004 03:29:31 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 12 Jul 2004 03:29:31 +0000 (UTC) Cc: kai@emptydomain.de, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Mon Jul 12 05:29:22 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 1BjrVK-00047C-00 for ; Mon, 12 Jul 2004 05:29:22 +0200 Original-Received: from lists.gnu.org ([199.232.76.165]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BjrVJ-00087X-00 for ; Mon, 12 Jul 2004 05:29:21 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BjrXc-0002wL-CK for emacs-devel@quimby.gnus.org; Sun, 11 Jul 2004 23:31:44 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1BjrXZ-0002wD-Ds for emacs-devel@gnu.org; Sun, 11 Jul 2004 23:31:41 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1BjrXV-0002vh-Rj for emacs-devel@gnu.org; Sun, 11 Jul 2004 23:31:41 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BjrXV-0002ve-Kt for emacs-devel@gnu.org; Sun, 11 Jul 2004 23:31:37 -0400 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BjrUs-0007YR-Vv for emacs-devel@gnu.org; Sun, 11 Jul 2004 23:28:55 -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 i6C3SquE015365; Sun, 11 Jul 2004 22:28:52 -0500 (CDT) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.6+Sun/8.11.6) id i6C3QEY15177; Sun, 11 Jul 2004 22:26:14 -0500 (CDT) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: teirllm@dms.auburn.edu In-reply-to: <200407111513.i6BFD9T09204@raven.dms.auburn.edu> (message from Luc Teirlinck on Sun, 11 Jul 2004 10:13:09 -0500 (CDT)) 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:25600 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:25600 >>From my previous message: By the way, your current code seems to assume that `visited-file-modtime' is not 0. Are you sure of that? Yes. I should have read the code of `verify-visited-file-modtime' more carefully. If `visited-file-modtime' returns 0, then `verify-visited-file-modtime' does not even call the handler. Actually, it might be sufficient, because `tramp-handle-verify-visited-file-modtime' probably never will get called if the buffer is not visiting a file. Are we sure of this? Yes, for the same reason. So there was no reason to worry about that either. Well, at least there is no reason to worry about those two things _unless_ `tramp-handle-verify-visited-file-modtime' could be called from some place else than `verify-visited-file-modtime', which would however surprise me. There are still problems with the last `t' clause. I will submit a revised patch tomorrow. Sincerely, Luc.