Hello,

a typo introduced in commit '6abc114f188267e4b804a3eca8794900eee66db0'
prevents `org-agenda.el' to compile into 'elc' (actually Emacs shows me
an error which I don't understand). I compared `org-agenda.el' of
'6abc114f188267e4b804a3eca8794900eee66db0' commit with previous commit
and made small patch which fixes the problem.

---
WBR, Vladimir Lomov

-- 
There's nothing very mysterious about you, except that
nobody really knows your origin, purpose, or destination.
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index b4f604b..04e80a3 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -3133,9 +3133,9 @@ before running the agenda command."
     (let (org-agenda-sticky)
       (if (> (length cmd-key) 2)
          (org-tags-view nil cmd-key)
-       (org-agenda nil cmd-key)))
+       (org-agenda nil cmd-key))))
     (set-buffer org-agenda-buffer-name)
-    (princ (buffer-string))))
+    (princ (buffer-string)))
 
 (defvar org-agenda-info nil)
 

Reply via email to