[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] org mobile - pre hooks
From: |
Bastien |
Subject: |
Re: [O] org mobile - pre hooks |
Date: |
Sun, 06 Mar 2011 01:17:08 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) |
Hi Richard,
Richard Riley <address@hidden> writes:
> Could I suggest that org-mobile-pre-push-hook is processed at the start
> of the org-mobile-push function before the checks? That way it can be
> used to properly setup mobile e.g using auth-source for the mobile
> password.
This trivial patch will perhaps do. I'm not using org-mobile.el so
please let me know if there are any side-effects.
Thanks,
diff --git a/lisp/org-mobile.el b/lisp/org-mobile.el
index 5471734..ffdd92c 100644
--- a/lisp/org-mobile.el
+++ b/lisp/org-mobile.el
@@ -305,9 +305,9 @@ create all custom agenda views, for upload to the mobile
phone."
(org-agenda-redo-command org-agenda-redo-command))
(save-excursion
(save-window-excursion
+ (run-hooks 'org-mobile-pre-push-hook)
(org-mobile-check-setup)
(org-mobile-prepare-file-lists)
- (run-hooks 'org-mobile-pre-push-hook)
(message "Creating agendas...")
(let ((inhibit-redisplay t)) (org-mobile-create-sumo-agenda))
(message "Creating agendas...done")
--
Bastien