From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Sean Sieger Newsgroups: gmane.emacs.devel Subject: Re: windows build failure Date: Mon, 14 Oct 2013 15:06:40 -0400 Message-ID: <87ob6rk6yn.fsf@gmail.com> References: <83wqmeocl5.fsf@gnu.org> <83ioxynvpb.fsf@gnu.org> <87zjrae0q7.fsf@gmail.com> <83eh8mnu8h.fsf@gnu.org> <87ob7qdzxj.fsf@gmail.com> <83a9janq2l.fsf@gnu.org> <87bo3oew5i.fsf@gmail.com> <83wqmclwja.fsf@gnu.org> <8761twemxb.fsf@gmail.com> <83txhglke0.fsf@gnu.org> <871u4keezm.fsf@gmail.com> <83pps4kl3s.fsf@gnu.org> <87vc1v4lld.fsf@gmail.com> <834n9fle10.fsf@gnu.org> <87k3ib4fl7.fsf@gmail.com> <8338ozl7cd.fsf@gnu.org> <83bo2ur4yq.fsf@gnu.org> <87ppr77msv.fsf@gmail.com> <83txgjpvu2.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1381777629 12844 80.91.229.3 (14 Oct 2013 19:07:09 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 14 Oct 2013 19:07:09 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 14 21:07:10 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VVnTx-0006yK-QY for ged-emacs-devel@m.gmane.org; Mon, 14 Oct 2013 21:07:09 +0200 Original-Received: from localhost ([::1]:38376 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVnTx-00024y-7p for ged-emacs-devel@m.gmane.org; Mon, 14 Oct 2013 15:07:09 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:54826) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVnTo-00024s-OM for emacs-devel@gnu.org; Mon, 14 Oct 2013 15:07:06 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VVnTi-0002N1-UO for emacs-devel@gnu.org; Mon, 14 Oct 2013 15:07:00 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:51429) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVnTi-0002Mw-NG for emacs-devel@gnu.org; Mon, 14 Oct 2013 15:06:54 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VVnTg-0006ow-Nx for emacs-devel@gnu.org; Mon, 14 Oct 2013 21:06:52 +0200 Original-Received: from pool-74-101-83-135.nycmny.east.verizon.net ([74.101.83.135]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Oct 2013 21:06:52 +0200 Original-Received: from sean.sieger by pool-74-101-83-135.nycmny.east.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Oct 2013 21:06:52 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 34 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-74-101-83-135.nycmny.east.verizon.net User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (windows-nt) Cancel-Lock: sha1:PY/7jOMCHdHum0175fzpbWkKZLY= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:164214 Archived-At: Eli Zaretskii writes: current-time-string is trivial: just call it, and see that the value is reasonable. GNU Emacs 24.3.50.1 (i686-pc-mingw32) of 2013-10-14 on 3249CTO: (current-time-string) -> "Mon Oct 14 14:46:48 2013" format-time-string is not much harder, see its doc string. (format-time-string "%Y%m%d %T") -> "20131014 14:58:43" decode-time can be tested by passing it what current-time returns, and also the time-related info from file-attributes. (current-time) -> (21084 15790 948000 0) How to use that with: (decode-time)? encode-time can be tested by passing it the result of decode-time. In each case, please compare with the results of some older binary of Emacs, as the differences could be subtle. GNU Emacs 24.3.50.1 (i686-pc-mingw32) of 2013-10-09 on 3249CTO: (current-time-string) -> "Mon Oct 14 15:00:29 2013" (format-time-string "%Y%m%d %T") -> "20131014 15:00:35" (current-time) -> (21084 16293 20000 0) Thanks.