From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Siegfried Heintze" Newsgroups: gmane.emacs.help Subject: Re: How to: 96 bit Date-time arithmetic? Date: Sat, 31 Aug 2002 12:21:28 -0600 Organization: Posted via Supernews, http://www.supernews.com Sender: help-gnu-emacs-admin@gnu.org Message-ID: References: NNTP-Posting-Host: localhost.gmane.org X-Trace: main.gmane.org 1030818885 6590 127.0.0.1 (31 Aug 2002 18:34:45 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 31 Aug 2002 18:34:45 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17lD52-0001iB-00 for ; Sat, 31 Aug 2002 20:34:44 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17lD6Q-0005Uo-00; Sat, 31 Aug 2002 14:36:10 -0400 Original-Path: shelby.stanford.edu!nntp.stanford.edu!newsfeed.stanford.edu!sn-xit-05!sn-xit-01!sn-post-02!sn-post-01!supernews.com!corp.supernews.com!not-for-mail Original-Newsgroups: gnu.emacs.help X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Original-X-Complaints-To: newsabuse@supernews.com Original-Lines: 12 Original-Xref: nntp.stanford.edu gnu.emacs.help:104349 Original-To: help-gnu-emacs@gnu.org Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:919 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:919 While I am still curious about 96 bit arithmetic, here an alternative attempt. Why does not it work? (setq x (decode-time (current-time))) (setq y (list (car x) (cadr x) (caddr x) (1- (cadddr x)) (nth 5 x) (nth 6 x) (nth 7 x)(nth 8 x) )) (apply 'encode-time x) ; no error (apply 'encode-time y) ; error -- why?