From: Luc Teirlinck <teirllm@dms.auburn.edu>
Cc: emacs-devel@gnu.org
Subject: Re: time values
Date: Sun, 11 Jul 2004 10:57:00 -0500 (CDT) [thread overview]
Message-ID: <200407111557.i6BFv0n09288@raven.dms.auburn.edu> (raw)
In-Reply-To: <86llhrq7ed.fsf@rumba.de.uu.net> (message from Kai Grossjohann on Sun, 11 Jul 2004 10:23:38 +0200)
I do not see why `visited-file-modtime could not be 0 at that point.
What about the following:
===File ~/tramp-diff-3======================================
*** tramp.el 26 Jun 2004 16:46:18 -0500 1.46
--- tramp.el 11 Jul 2004 10:43:12 -0500
***************
*** 2337,2349 ****
(with-parsed-tramp-file-name f nil
(let* ((attr (file-attributes f))
(modtime (nth 5 attr)))
! (cond ((and attr (not (equal modtime '(0 0))))
! ;; Why does `file-attributes' return a list (HIGH
! ;; LOW), but `visited-file-modtime' returns a cons
! ;; (HIGH . LOW)?
(let ((mt (visited-file-modtime)))
(< (abs (tramp-time-diff
! modtime (list (car mt) (cdr mt)))) 2)))
(attr
(save-excursion
(tramp-send-command
--- 2337,2354 ----
(with-parsed-tramp-file-name f nil
(let* ((attr (file-attributes f))
(modtime (nth 5 attr)))
! (cond ((eq (visited-file-modtime) 0))
! ((and attr (not (equal modtime '(0 0))))
(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 (and (consp mt) (atom (cdr mt)))
! (list (car mt) (cdr mt))
! mt)))
! 2)))
(attr
(save-excursion
(tramp-send-command
============================================================
next prev parent reply other threads:[~2004-07-11 15:57 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-07-11 0:33 time values Luc Teirlinck
2004-07-11 8:23 ` Kai Grossjohann
2004-07-11 13:35 ` Andreas Schwab
2004-07-11 14:35 ` Alex Schroeder
2004-07-11 15:13 ` Luc Teirlinck
2004-07-11 15:18 ` Luc Teirlinck
2004-07-12 3:26 ` Luc Teirlinck
2004-07-11 15:37 ` Luc Teirlinck
2004-07-11 15:57 ` Luc Teirlinck [this message]
2004-07-11 23:23 ` Richard Stallman
2004-07-12 18:22 ` Luc Teirlinck
2004-07-17 20:33 ` Kai Grossjohann
2004-07-11 23:23 ` Richard Stallman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200407111557.i6BFv0n09288@raven.dms.auburn.edu \
--to=teirllm@dms.auburn.edu \
--cc=emacs-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).