Windows10x64系统, Spacemacs Org-mode下,配置使用GTD.

Spacemacs Org-mode下,配置使用GTD,采用子龙山人的部分配置,可以正常使用,进行时间、项目、笔记等管理,但对配置文件进行字节编译时出现如下错误: In end of data: .spacemacs:1179:1:Warning: the following functions are not known to be defined: org-end-of-subtree, org-get-priority, org-entry-get 一直不得其解? 源码: (defun air-org-skip-subtree-if-priority (priority) “Skip an agenda subtree if it has a priority of PRIORITY. PRIORITY may be one of the characters ?A, ?B, or ?C.” (let ((subtree-end (save-excursion (org-end-of-subtree t))) (pri-value (* 1000 (- org-lowest-priority priority))) (pri-current (org-get-priority (thing-at-point 'line t)))) (if (= pri-value pri-current) subtree-end nil)))