unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: Gabriel <beauchampgabriel@gmail.com>
To: 19302@debbugs.gnu.org
Subject: bug#19302: [PATCH] bug#19302: 24.4.51; `date-to-time' fails after 2038
Date: Wed, 10 Dec 2014 19:31:13 -0500	[thread overview]
Message-ID: <87mw6v9gdq.fsf_-_@gmail.com> (raw)
In-Reply-To: <87vblmc377.fsf@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 217 bytes --]

I made only one commit, since it's basically the same text in both.

And, reading a bit more on the manual.
I saw that in "(elisp) Time Conversion" it's actually documented that
the time will fail on 32-bit.

Thanks


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: date-to-time doc fixes --]
[-- Type: text/x-diff, Size: 2403 bytes --]

From 27ff288c14aebce442b72c7e4d433d7cfff37f85 Mon Sep 17 00:00:00 2001
From: Gabriel Beauchamp <beauchampgabriel@gmail.com>
Date: Wed, 10 Dec 2014 18:18:16 -0500
Subject: [PATCH] Doc fixes.

    * calendar/time-date.el (date-to-time): Doc fix.
    * os.texi (Time Parsing): Doc fix.
---
 doc/lispref/ChangeLog      | 4 ++++
 doc/lispref/os.texi        | 2 ++
 lisp/ChangeLog             | 4 ++++
 lisp/calendar/time-date.el | 3 ++-
 4 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index e7b5606..0624bee 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
+2014-12-10  Gabriel  <beauchampgabriel@gmail.com>
+
+	* os.texi (Time Parsing): Doc fix.
+
 2014-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
 	* files.texi (Contents of Directories): Document
diff --git a/doc/lispref/os.texi b/doc/lispref/os.texi
index b709447..1936bdf 100644
--- a/doc/lispref/os.texi
+++ b/doc/lispref/os.texi
@@ -1422,6 +1422,8 @@ Time values are lists of two to four integers (@pxref{Time of Day}).
 @defun date-to-time string
 This function parses the time-string @var{string} and returns the
 corresponding time value.
+On 32-bit systems, this function will fail for @var{string}
+after 19-Jan-2038.
 @end defun
 
 @defun format-time-string format-string &optional time-value universal
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e65835c..39727d9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2014-12-10  Gabriel  <beauchampgabriel@gmail.com>
+
+	* calendar/time-date.el (date-to-time): Doc fix.
+
 2014-12-10  Artur Malabarba  <bruce.connor.am@gmail.com>
 
 	* let-alist.el: Add new package and macro.
diff --git a/lisp/calendar/time-date.el b/lisp/calendar/time-date.el
index e7a8cc7..e77d648 100644
--- a/lisp/calendar/time-date.el
+++ b/lisp/calendar/time-date.el
@@ -146,7 +146,8 @@ it is assumed that PICO was omitted and should be treated as zero."
 ;; values.  timezone-make-date-arpa-standard should help.
 (defun date-to-time (date)
   "Parse a string DATE that represents a date-time and return a time value.
-If DATE lacks timezone information, GMT is assumed."
+If DATE lacks timezone information, GMT is assumed.
+On 32-bit systems, this function will fail for DATE after 19-Jan-2038."
   (condition-case err
       (apply 'encode-time (parse-time-string date))
     (error
-- 
1.8.3.2


  reply	other threads:[~2014-12-11  0:31 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-08  1:58 bug#19302: 24.4.51; `date-to-time' fails after 2038 Gabriel
2014-12-08  3:59 ` Lars Magne Ingebrigtsen
2014-12-08 12:54   ` Gabriel
2014-12-08 20:59   ` Richard Stallman
2014-12-08 22:02     ` Lars Magne Ingebrigtsen
2014-12-09 11:01       ` Richard Stallman
2014-12-09 16:38         ` Eli Zaretskii
2014-12-09 18:17           ` Ivan Shmakov
2014-12-09 18:26             ` Eli Zaretskii
2014-12-09 18:31               ` Lars Magne Ingebrigtsen
2014-12-09 18:49                 ` Eli Zaretskii
2014-12-09 19:01                   ` Lars Magne Ingebrigtsen
2014-12-09 19:09                     ` Eli Zaretskii
2014-12-10  0:41                       ` Gabriel
2014-12-10 16:25                         ` Eli Zaretskii
2014-12-11  0:31                           ` Gabriel [this message]
2014-12-11  9:25                             ` bug#19302: [PATCH] " Andreas Schwab
2014-12-09 20:52                     ` Andreas Schwab
2014-12-09 19:07                   ` Ivan Shmakov
2014-12-09 19:48                     ` Eli Zaretskii
2014-12-10 16:18                 ` Richard Stallman
2014-12-10 21:21                   ` Gabriel
2014-12-11 19:49                     ` Richard Stallman
2014-12-12  0:33                       ` Gabriel
2014-12-10 16:18           ` Richard Stallman
2014-12-10  0:37         ` Stefan Monnier
2014-12-10 16:17           ` Richard Stallman
2014-12-10 19:59             ` Stefan Monnier
2014-12-11 19:49               ` Richard Stallman
2014-12-11 20:31                 ` Stefan Monnier
2014-12-12 16:42                   ` Richard Stallman
2019-11-02  0:11                   ` Stefan Kangas
2020-02-29 18:17                   ` Stefan Kangas
2020-02-29 20:06                     ` Stefan Monnier
2020-03-01  1:30                       ` Stefan Kangas
2020-03-01  3:56                         ` Stefan Monnier
2020-03-02 10:43                           ` Stefan Kangas
2020-03-09  0:10                           ` Stefan Kangas

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=87mw6v9gdq.fsf_-_@gmail.com \
    --to=beauchampgabriel@gmail.com \
    --cc=19302@debbugs.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).