* [PATCH] save-restriction in `org-mobile-push'
@ 2013-07-19 5:19 Muchenxuan Tong
2013-08-08 6:49 ` Carsten Dominik
0 siblings, 1 reply; 2+ messages in thread
From: Muchenxuan Tong @ 2013-07-19 5:19 UTC (permalink / raw)
To: emacs-orgmode; +Cc: Muchenxuan Tong
* lisp/org-mobile.el (org-mobile-push): add `save-restriction'
The fact that pushing org-file loses my narrow context annoys me.
TINYCHANGE
---
lisp/org-mobile.el | 35 ++++++++++++++++++-----------------
1 file changed, 18 insertions(+), 17 deletions(-)
diff --git a/lisp/org-mobile.el b/lisp/org-mobile.el
index 7cdaf34..a43896b 100644
--- a/lisp/org-mobile.el
+++ b/lisp/org-mobile.el
@@ -319,23 +319,24 @@ create all custom agenda views, for upload to the mobile phone."
(org-agenda-tag-filter org-agenda-tag-filter)
(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)
- (message "Creating agendas...")
- (let ((inhibit-redisplay t)
- (org-agenda-files (mapcar 'car org-mobile-files-alist)))
- (org-mobile-create-sumo-agenda))
- (message "Creating agendas...done")
- (org-save-all-org-buffers) ; to save any IDs created by this process
- (message "Copying files...")
- (org-mobile-copy-agenda-files)
- (message "Writing index file...")
- (org-mobile-create-index-file)
- (message "Writing checksums...")
- (org-mobile-write-checksums)
- (run-hooks 'org-mobile-post-push-hook)))
+ (save-restriction
+ (save-window-excursion
+ (run-hooks 'org-mobile-pre-push-hook)
+ (org-mobile-check-setup)
+ (org-mobile-prepare-file-lists)
+ (message "Creating agendas...")
+ (let ((inhibit-redisplay t)
+ (org-agenda-files (mapcar 'car org-mobile-files-alist)))
+ (org-mobile-create-sumo-agenda))
+ (message "Creating agendas...done")
+ (org-save-all-org-buffers) ; to save any IDs created by this process
+ (message "Copying files...")
+ (org-mobile-copy-agenda-files)
+ (message "Writing index file...")
+ (org-mobile-create-index-file)
+ (message "Writing checksums...")
+ (org-mobile-write-checksums)
+ (run-hooks 'org-mobile-post-push-hook))))
(setq org-agenda-buffer-name org-agenda-curbuf-name
org-agenda-this-buffer-name org-agenda-curbuf-name))
(redraw-display)
--
1.8.3.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] save-restriction in `org-mobile-push'
2013-07-19 5:19 [PATCH] save-restriction in `org-mobile-push' Muchenxuan Tong
@ 2013-08-08 6:49 ` Carsten Dominik
0 siblings, 0 replies; 2+ messages in thread
From: Carsten Dominik @ 2013-08-08 6:49 UTC (permalink / raw)
To: Muchenxuan Tong; +Cc: emacs-orgmode
Applied, thanks.
- Carsten
On 19.7.2013, at 07:19, Muchenxuan Tong <demon386@gmail.com> wrote:
> * lisp/org-mobile.el (org-mobile-push): add `save-restriction'
>
> The fact that pushing org-file loses my narrow context annoys me.
>
> TINYCHANGE
> ---
> lisp/org-mobile.el | 35 ++++++++++++++++++-----------------
> 1 file changed, 18 insertions(+), 17 deletions(-)
>
> diff --git a/lisp/org-mobile.el b/lisp/org-mobile.el
> index 7cdaf34..a43896b 100644
> --- a/lisp/org-mobile.el
> +++ b/lisp/org-mobile.el
> @@ -319,23 +319,24 @@ create all custom agenda views, for upload to the mobile phone."
> (org-agenda-tag-filter org-agenda-tag-filter)
> (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)
> - (message "Creating agendas...")
> - (let ((inhibit-redisplay t)
> - (org-agenda-files (mapcar 'car org-mobile-files-alist)))
> - (org-mobile-create-sumo-agenda))
> - (message "Creating agendas...done")
> - (org-save-all-org-buffers) ; to save any IDs created by this process
> - (message "Copying files...")
> - (org-mobile-copy-agenda-files)
> - (message "Writing index file...")
> - (org-mobile-create-index-file)
> - (message "Writing checksums...")
> - (org-mobile-write-checksums)
> - (run-hooks 'org-mobile-post-push-hook)))
> + (save-restriction
> + (save-window-excursion
> + (run-hooks 'org-mobile-pre-push-hook)
> + (org-mobile-check-setup)
> + (org-mobile-prepare-file-lists)
> + (message "Creating agendas...")
> + (let ((inhibit-redisplay t)
> + (org-agenda-files (mapcar 'car org-mobile-files-alist)))
> + (org-mobile-create-sumo-agenda))
> + (message "Creating agendas...done")
> + (org-save-all-org-buffers) ; to save any IDs created by this process
> + (message "Copying files...")
> + (org-mobile-copy-agenda-files)
> + (message "Writing index file...")
> + (org-mobile-create-index-file)
> + (message "Writing checksums...")
> + (org-mobile-write-checksums)
> + (run-hooks 'org-mobile-post-push-hook))))
> (setq org-agenda-buffer-name org-agenda-curbuf-name
> org-agenda-this-buffer-name org-agenda-curbuf-name))
> (redraw-display)
> --
> 1.8.3.2
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-08-08 6:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-19 5:19 [PATCH] save-restriction in `org-mobile-push' Muchenxuan Tong
2013-08-08 6:49 ` Carsten Dominik
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).