Browse Source

Keep compiler happy

Carsten Dominik 15 years ago
parent
commit
4183124c4b
4 changed files with 7 additions and 1 deletions
  1. 2 0
      lisp/org-archive.el
  2. 2 0
      lisp/org-inlinetask.el
  3. 2 0
      lisp/org-macs.el
  4. 1 1
      lisp/org.el

+ 2 - 0
lisp/org-archive.el

@@ -32,6 +32,8 @@
 
 (require 'org)
 
+(declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
+
 (defcustom org-archive-sibling-heading "Archive"
   "Name of the local archive sibling that is used to archive entries locally.
 Locally means: in the tree, under a sibling.

+ 2 - 0
lisp/org-inlinetask.el

@@ -76,6 +76,8 @@
 
 ;;; Code
 
+(require 'org)
+
 (defgroup org-inlinetask nil
   "Options concerning inline tasks in Org mode."
   :tag "Org Inline Tasks"

+ 2 - 0
lisp/org-macs.el

@@ -262,6 +262,8 @@ This is in contrast to merely setting it to 0."
   `(let* ((outline-regexp (org-get-limited-outline-regexp)))
      ,@body))
 
+(defvar org-odd-levels-only) ; defined in org.el
+(defvar org-inlinetask-min-level) ; defined in org-inlinetask.el
 (defun org-get-limited-outline-regexp ()
   "Return outline-regexp with limited number of levels.
 The number of levels is controlled by "

+ 1 - 1
lisp/org.el

@@ -2852,7 +2852,7 @@ Normal means, no org-mode-specific context."
 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
 		  "org-agenda" (&optional end))
-
+(declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
 (declare-function parse-time-string "parse-time" (string))
 (declare-function remember "remember" (&optional initial))
 (declare-function remember-buffer-desc "remember" ())