summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-08-28 15:10:44 +0200
committerBastien Guerry <bzg@altern.org>2012-08-28 15:10:44 +0200
commitda9c67a7a59d77d3d108bfa46b99557ab6dc8148 (patch)
tree8053b2d1cfb9765a69e3d456b4e65d9d7e81bf20
parentcc9487004dab917498ec799620c12f9d6f16ac06 (diff)
downloadorg-mode-da9c67a7a59d77d3d108bfa46b99557ab6dc8148.tar.gz
org-agenda.el: Fix one byte-compiler warning
-rw-r--r--lisp/org-agenda.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 0a2534b..c1b9a49 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -3005,6 +3005,8 @@ This ensures the export commands can easily use it."
(kill-buffer bufname)))))))
(def-edebug-spec org-batch-store-agenda-views (&rest sexp))
+(defvar org-agenda-current-span nil
+ "The current span used in the agenda view.") ; local variable in the agenda buffer
(defun org-agenda-mark-header-line (pos)
"Mark the line at POS as an agenda structure header."
(save-excursion
@@ -3818,8 +3820,6 @@ When EMPTY is non-nil, also include days without any entries."
"Start day for the agenda view.
Custom commands can set this variable in the options section.")
(defvar org-starting-day nil) ; local variable in the agenda buffer
-(defvar org-agenda-current-span nil
- "The current span used in the agenda view.") ; local variable in the agenda buffer
(defvar org-arg-loc nil) ; local variable
(defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)