diff options
author | Mark H Weaver <mhw@netris.org> | 2016-01-06 16:39:13 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2016-01-06 16:44:39 -0500 |
commit | b97bfa8be39de70ba244c7785c197c8944f8f334 (patch) | |
tree | e9ebdd518ce801ff59e6dafbe59d7866ab94a0b8 | |
parent | 4d08e38e0a7e07fda7443fe7a0b5f9d61b313fda (diff) | |
download | guile-b97bfa8be39de70ba244c7785c197c8944f8f334.tar.gz |
SRFI-19: Update the table of leap seconds.
* module/srfi/srfi-19.scm (leap-second-table): Update to include the
most recent leap second.
-rw-r--r-- | module/srfi/srfi-19.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/module/srfi/srfi-19.scm b/module/srfi/srfi-19.scm index 6d86ee638..658ccd915 100644 --- a/module/srfi/srfi-19.scm +++ b/module/srfi/srfi-19.scm @@ -1,7 +1,7 @@ ;;; srfi-19.scm --- Time/Date Library -;; Copyright (C) 2001, 2002, 2003, 2005, 2006, 2007, 2008, 2009, 2010, -;; 2011, 2014 Free Software Foundation, Inc. +;; Copyright (C) 2001-2003, 2005-2011, 2014, 2016 +;; Free Software Foundation, Inc. ;; ;; This library is free software; you can redistribute it and/or ;; modify it under the terms of the GNU Lesser General Public @@ -203,7 +203,8 @@ ;; each entry is (tai seconds since epoch . # seconds to subtract for utc) ;; note they go higher to lower, and end in 1972. (define leap-second-table - '((1341100800 . 35) + '((1435708800 . 36) + (1341100800 . 35) (1230768000 . 34) (1136073600 . 33) (915148800 . 32) |