unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* org-timestamp-change and timezone
@ 2016-04-19  6:22 Cédric Chépied
  2016-04-19 14:29 ` Eli Zaretskii
  0 siblings, 1 reply; 2+ messages in thread
From: Cédric Chépied @ 2016-04-19  6:22 UTC (permalink / raw)
  To: emacs-devel

Hi,

Since a couple of days I can't use org-timestamp-change anymore, I got this
error:

setq: Invalid time zone specification: (nil nil nil)

I "fixed" it with this patch but I don't know what I'm doing cause my timezone
is always (nil nil nil) and the encode-time function only wants 'nil'. I hope
this will help people to fix the problem.

Regards,
--
Cédric Chépied
<cedric.chepied@gmail.com>



From 5ce4a6e5ed72bf5dd8ec6517119fc03c612e2cfa Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=A9dric=20Ch=C3=A9pied?= <cedric.chepied@areva.com>
Date: Tue, 19 Apr 2016 08:12:40 +0200
Subject: [PATCH] Fix timezone in org-timestamp-change

---
 lisp/org/org.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/org/org.el b/lisp/org/org.el
index 3abf627..0e312b2 100644
--- a/lisp/org/org.el
+++ b/lisp/org/org.el
@@ -17460,7 +17460,7 @@ When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
 			 (+ (if (eq org-ts-what 'day) n 0)    (nth 3 time0))
 			 (+ (if (eq org-ts-what 'month) n 0)  (nth 4 time0))
 			 (+ (if (eq org-ts-what 'year) n 0)   (nth 5 time0))
-			 (nthcdr 6 time0)))
+			 (nth 6 time0)))
       (when (and (member org-ts-what '(hour minute))
 		 extra
 		 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
-- 
2.8.0



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: org-timestamp-change and timezone
  2016-04-19  6:22 org-timestamp-change and timezone Cédric Chépied
@ 2016-04-19 14:29 ` Eli Zaretskii
  0 siblings, 0 replies; 2+ messages in thread
From: Eli Zaretskii @ 2016-04-19 14:29 UTC (permalink / raw)
  To: Cédric Chépied; +Cc: emacs-devel

> Date: Tue, 19 Apr 2016 08:22:49 +0200
> From: Cédric Chépied <cedric.chepied@gmail.com>
> 
> Since a couple of days I can't use org-timestamp-change anymore, I got this
> error:
> 
> setq: Invalid time zone specification: (nil nil nil)

This is bug#23299.  Some Org developer needs to look at it, IMO.



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-04-19 14:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-19  6:22 org-timestamp-change and timezone Cédric Chépied
2016-04-19 14:29 ` Eli Zaretskii

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).