all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#23299: 25.1.50; org-timestamp-change: Invalid time zone specification: (nil nil nil)
@ 2016-04-16  9:08 Peter Münster
  2016-04-16 10:57 ` Eli Zaretskii
  0 siblings, 1 reply; 6+ messages in thread
From: Peter Münster @ 2016-04-16  9:08 UTC (permalink / raw)
  To: 23299

Hi,

With latest git-emacs, I get this error, after org-timestamp-up-day on a
time-stamp:

org-timestamp-change: Invalid time zone specification: (nil nil nil)

How could I make org-timestamp-up-day work again please?

TIA for any help,
-- 
           Peter





^ permalink raw reply	[flat|nested] 6+ messages in thread
* org-timestamp-change and timezone
@ 2016-04-19  6:22 Cédric Chépied
  2016-04-20  7:11 ` bug#23299: 25.1.50; org-timestamp-change: Invalid time zone specification: (nil nil nil) Paul Eggert
  0 siblings, 1 reply; 6+ 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] 6+ messages in thread

end of thread, other threads:[~2016-04-20  7:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-16  9:08 bug#23299: 25.1.50; org-timestamp-change: Invalid time zone specification: (nil nil nil) Peter Münster
2016-04-16 10:57 ` Eli Zaretskii
2016-04-16 11:39   ` Peter Münster
2016-04-16 12:20     ` Michael Heerdegen
2016-04-16 12:31     ` Eli Zaretskii
  -- strict thread matches above, loose matches on Subject: below --
2016-04-19  6:22 org-timestamp-change and timezone Cédric Chépied
2016-04-20  7:11 ` bug#23299: 25.1.50; org-timestamp-change: Invalid time zone specification: (nil nil nil) Paul Eggert

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.