Fix breakage from previous commit

* lisp/org-element.el: Do not (require 'org).

* lisp/org-agenda.el: Remove duplicate requires.
This commit is contained in:
Achim Gratz 2012-07-28 07:20:41 +02:00
parent c2735e7c19
commit 044b0ff7e8
2 changed files with 2 additions and 6 deletions

View File

@ -1793,10 +1793,6 @@ Note that functions in this alist don't need to be quoted."
:version "24.1"
:group 'org-agenda)
(eval-when-compile
(require 'cl))
(require 'org)
(defmacro org-agenda-with-point-at-orig-entry (string &rest body)
"Execute BODY with point at location given by `org-hd-marker' property.
If STRING is non-nil, the text property will be fetched from position 0

View File

@ -108,8 +108,8 @@
;;; Code:
(eval-when-compile (require 'cl))
(require 'org)
(eval-when-compile
(require 'cl))
(declare-function org-inlinetask-goto-end "org-inlinetask" ())