浏览代码

Keep compiler happy

Carsten Dominik 15 年之前
父节点
当前提交
721bf5c3d3
共有 2 个文件被更改,包括 4 次插入0 次删除
  1. 1 0
      lisp/org-footnote.el
  2. 3 0
      lisp/org-src.el

+ 1 - 0
lisp/org-footnote.el

@@ -46,6 +46,7 @@
 (declare-function org-show-context "org" (&optional key))
 (declare-function org-back-to-heading "org" (&optional invisible-ok))
 (declare-function org-end-of-subtree "org"  (&optional invisible-ok to-heading))
+(declare-function org-in-verbatim-emphasis "org" ())
 (defvar org-odd-levels-only) ;; defined in org.el
 
 (defconst org-footnote-re

+ 3 - 0
lisp/org-src.el

@@ -34,9 +34,12 @@
 
 (require 'org-macs)
 (require 'org-compat)
+(eval-when-compile
+  (require 'cl))
 
 (declare-function org-do-remove-indentation "org" (&optional n))
 (declare-function org-get-indentation "org" (&optional line))
+(declare-function org-switch-to-buffer-other-window "org" (&rest args))
 
 (defcustom org-edit-src-region-extra nil
   "Additional regexps to identify regions for editing with `org-edit-src-code'.