aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/org/ChangeLog3
-rw-r--r--lisp/org/org-gnus.el6
2 files changed, 4 insertions, 5 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog
index 82937540e3d..5b3c2f31cc0 100644
--- a/lisp/org/ChangeLog
+++ b/lisp/org/ChangeLog
@@ -1,5 +1,8 @@
12009-09-03 Carsten Dominik <dominik@u016822.science.uva.nl> 12009-09-03 Carsten Dominik <dominik@u016822.science.uva.nl>
2 2
3 * org-agenda.el (org-agenda-dim-blocked-tasks): Make sure we are
4 referencing the start of the line.
5
3 * org-gnus.el: Remove unnecessary declare-function forms. 6 * org-gnus.el: Remove unnecessary declare-function forms.
4 (gnus-sum): Always require gnus-sum. 7 (gnus-sum): Always require gnus-sum.
5 8
diff --git a/lisp/org/org-gnus.el b/lisp/org/org-gnus.el
index 5c5bc6c07d4..428aa8b9411 100644
--- a/lisp/org/org-gnus.el
+++ b/lisp/org/org-gnus.el
@@ -34,8 +34,7 @@
34;;; Code: 34;;; Code:
35 35
36(require 'org) 36(require 'org)
37(eval-when-compile 37(require 'gnus-sum)
38 (require 'gnus-sum))
39 38
40;; Customization variables 39;; Customization variables
41 40
@@ -51,9 +50,6 @@ negates this setting for the duration of the command."
51 :type 'boolean) 50 :type 'boolean)
52 51
53;; Declare external functions and variables 52;; Declare external functions and variables
54(declare-function gnus-summary-article-header "gnus-sum" (&optional number))
55(declare-function message-fetch-field "message" (header &optional not-all))
56(declare-function message-narrow-to-head-1 "message" nil)
57 53
58(defvar gnus-other-frame-object) 54(defvar gnus-other-frame-object)
59(defvar gnus-group-name) 55(defvar gnus-group-name)