From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: martin rudalics Newsgroups: gmane.emacs.devel Subject: Re: vc-cvs-parse-entry Date: Mon, 04 Sep 2006 11:17:18 +0200 Message-ID: <44FBEF1E.8030806@gmx.at> References: <44F4A8D0.6090304@gmx.at> <44F5D00D.5080409@gmx.at> <44F98B06.2020602@gmx.at> <44FAB10B.8010608@gmx.at> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1157362319 7225 80.91.229.2 (4 Sep 2006 09:31:59 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 4 Sep 2006 09:31:59 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Sep 04 11:31:58 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GKAny-000608-0Y for ged-emacs-devel@m.gmane.org; Mon, 04 Sep 2006 11:31:46 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GKAnx-0004pA-II for ged-emacs-devel@m.gmane.org; Mon, 04 Sep 2006 05:31:45 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GKAnB-0004PV-Hh for emacs-devel@gnu.org; Mon, 04 Sep 2006 05:30:57 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GKAn9-0004NP-Jp for emacs-devel@gnu.org; Mon, 04 Sep 2006 05:30:56 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GKAn9-0004N7-Er for emacs-devel@gnu.org; Mon, 04 Sep 2006 05:30:55 -0400 Original-Received: from [213.165.64.20] (helo=mail.gmx.net) by monty-python.gnu.org with smtp (Exim 4.52) id 1GKAxd-0001h9-Fr for emacs-devel@gnu.org; Mon, 04 Sep 2006 05:41:45 -0400 Original-Received: (qmail invoked by alias); 04 Sep 2006 09:30:53 -0000 Original-Received: from N896P008.adsl.highway.telekom.at (EHLO [62.47.55.232]) [62.47.55.232] by mail.gmx.net (mp029) with SMTP; 04 Sep 2006 11:30:53 +0200 X-Authenticated: #14592706 User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: de-DE, de, en-us, en Original-To: Eli Zaretskii In-Reply-To: X-Y-GMX-Trusted: 0 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: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:59307 Archived-At: > I forgot to mention that you can use the --full-time switch to `ls' to > force it display the full time for all files. Sorry, I forgot that --full-time needs -l. ls.exe (and thus dired with `ls-lisp-use-insert-directory-program' non-nil) gets me: -rw-rw-rw- 1 user group 1188 Mon Sep 01 17:45:52 2003 acldef.h -rw-rw-rw- 1 user group 15285 Fri Jan 30 18:10:02 2004 alloca.c ^^ DIR gets me: ACLDEF H 1.188 01.09.03 17:45 acldef.h ALLOCA C 15.285 30.01.04 18:10 alloca.c ^^ Emacs gets me (sorry, it's too tedious to turn off the locales): (format-time-string "%a %b %d %H:%M:%S %Y %Z" (nth 5 (file-attributes "~/src/acldef.h"))) -> "Mo Sep 01 17:45:52 2003 (MEZ) - Mitteleurop. Sommerzeit" ... "Sommerzeit" == DST (format-time-string "%a %b %d %H:%M:%S %Y %Z" (nth 5 (file-attributes "~/src/acldef.h")) t) -> "Mo Sep 01 15:45:52 2003 GMT" (format-time-string "%a %b %d %H:%M:%S %Y %Z" (nth 5 (file-attributes "~/src/alloca.c"))) -> "Fr Jän 30 17:10:02 2004 (MEZ) Mitteleuropäische Zeit" ^^ ... no DST here (format-time-string "%a %b %d %H:%M:%S %Y %Z" (nth 5 (file-attributes "~/src/alloca.c")) t) -> "Fr Jän 30 16:10:02 2004 GMT" BTW, stat (GNU coreutils) 5.3.0 gives the same results as Emacs, hence the results delivered by stat and ls (GNU fileutils) 3.16 differ on my system.