emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Clifford Caoile <piyo@users.sourceforge.net>
To: Emacs-orgmode mailing list <emacs-orgmode@gnu.org>
Subject: Re: Ignoring non-existent agenda files
Date: Mon, 24 May 2010 21:34:21 +0900	[thread overview]
Message-ID: <AANLkTik3SCbmAWfYgnDgAaqELy6gdQZAf8ylrbUXZM84@mail.gmail.com> (raw)

Hello emacs-orgmode mailing list:

I too would like the ability for org-mode to ignore (silently)
non-existent agenda files. This has been discussed before on the
mailing list [1].

Basically my use case is with Emacs on Windows. I have one Org Agenda
file on removable storage (USB memory), which I want to use from
multiple computers, so sometimes that file is not available. I tried
modifying the org-mode elisp files as shown below. When the
interactive prompt "non-existent file <filename>.. [R]emove from list
or [A]bort?" is shown, I press the "c" key to continue.

---gitk output---
[author/committer is me, but info is redacted]
Parent: 6f3026edf161ae2d721f4ac04ed50fdebb16353d (Release 6.35g)

    Continuing loading when agenda org files do not exist temporarily (press c)

--------------------------------- lisp/org.el ---------------------------------
index c89c5ac..89c5d88 100644
@@ -14896,6 +14896,8 @@ Optional argument FILE means use this file
instead of the current."
        ((equal r ?r)
 	(org-remove-file file)
 	(throw 'nextfile t))
+       ((equal r ?c)
+	(throw 'nextfile t))
        (t (error "Abort"))))))

 (defun org-get-agenda-file-buffer (file)
---gitk output end---

Unfortunately, the above doesn't work correctly. I have to press "c"
multiple times in order to "c"ontinue.

I think the workaround suggested by Carsten Dominik [1], which is to
delete non-existent files from the org-agenda-files variable once,
could work for me if I change it to check the existence of the files
every time. Do you think this can be implemented as an elisp defadvice
on org-agenda<f>? Or is there some better way?

References:
[1] http://thread.gmane.org/gmane.emacs.orgmode/17408

Best regards and TIA,
Clifford Caoile

             reply	other threads:[~2010-05-24 12:34 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-24 12:34 Clifford Caoile [this message]
2010-06-04 10:52 ` Re: Ignoring non-existent agenda files Carsten Dominik
2010-06-04 13:57   ` Clifford Caoile
  -- strict thread matches above, loose matches on Subject: below --
2009-09-09  7:53 ignoring " Daniel Clemente
2009-09-09 10:39 ` Bastien
2009-09-09 12:50 ` Carsten Dominik
2009-09-14  8:44   ` andrea Crotti

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=AANLkTik3SCbmAWfYgnDgAaqELy6gdQZAf8ylrbUXZM84@mail.gmail.com \
    --to=piyo@users.sourceforge.net \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).