【发布时间】:2011-09-21 22:39:22
【问题描述】:
我想在 org-mode 中使用番茄钟技术,如中所述 http://orgmode.org/worg/org-gtd-etc.html
我在 .emacs 文件中添加了以下几行
(add-to-list 'org-modules 'org-timer)
(setq org-timer-default-timer 25)
(add-hook 'org-clock-in-hook '(lambda ()
(if (not org-timer-current-timer)
(org-timer-set-timer '(16)))))
当启动 emacs 时,Warnings 缓冲区中会显示以下警告。
Symbol's value as variable is void: org-modules
我正在使用 org-mode 版本 - 7.7.291.g37db,它是从 git://orgmode.org/org-mode.git 克隆的
如何摆脱错误。
【问题讨论】: