设置组织模式的时区

发布于 2024-08-07 15:39:44 字数 273 浏览 2 评论 0原文

我刚刚开始使用 org-mode,到目前为止我真的很喜欢它。我在伦敦工作,使用在美国东海岸的 OpenVMS 上运行的 xemacs。有没有办法让组织模式使用服务器默认时区以外的时区?

我试过了:

(setq calendar-time-zone 0)
(setq calendar-standard-time-zone-name "GMT")
(setq calendar-daylight-time-zone-name "GDT")

没有运气。

I'm just getting started with org-mode, and really like it so far. I work in London with xemacs running on OpenVMS based on the East Coast US. Is there any way to get org-mode to use a timezone other than the server's default?

I've tried:

(setq calendar-time-zone 0)
(setq calendar-standard-time-zone-name "GMT")
(setq calendar-daylight-time-zone-name "GDT")

with no luck.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

故人的歌 2024-08-14 15:39:44

事实证明:

(set-time-zone-rule "GMT-1")

有效。

我不完全清楚为什么这个:

(set-time-zone-rule "BST")

给出了错误的输出(它导致时间提前 1 小时,即使 BST 是英国伦敦当前的时区字符串)。

Turns out:

(set-time-zone-rule "GMT-1")

works.

I'm not entirely clear why this:

(set-time-zone-rule "BST")

gives the wrong output (it results in times 1 hour early, even though BST is the current timezone string for London, UK).

攀登最高峰 2024-08-14 15:39:44
(set-time-zone-rule "<TZ*>")

在哪里

<TZ*>

is a canonical value from List of tz database time zones

(set-time-zone-rule "<TZ*>")

where

<TZ*>

is a canonical value from List of tz database time zones

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文