Wanrong Lin <[EMAIL PROTECTED]> writes:
> I am trying to customize the org-agenda-file-regexp variable to exclude
> those auto backup files starting with "#", but found out the regexp does
> not have any effect on agend file list. And I further found out it seems
> the variable org-agenda-file-regexp is not used in org.el at all. In
> function "org-agenda-files", the regular expression is hard coded to
> "\\.org\\'", as in these two lines:
>
> (if (file-directory-p f)
> (directory-files f t "\\.org\\'")
>
> I wonder whether this is a bug and should be fixed. Thank you.
I think this should be fixed. Here is a patch.
diff -u /home/guerry/elisp/testing/org/ /home/guerry/elisp/testing/bzg/org.el
--- /home/guerry/elisp/testing/org/org.el 2007-12-20 14:38:42.000000000 +0100
+++ /home/guerry/elisp/testing/bzg/org.el 2007-12-29 13:13:03.000000000 +0100
@@ -19618,7 +19618,7 @@
(setq files (apply 'append
(mapcar (lambda (f)
(if (file-directory-p f)
- (directory-files f t "\\.org\\'")
+ (directory-files f t org-agenda-file-regexp)
(list f)))
files)))
(if org-agenda-skip-unavailable-files
Diff finished. Sat Dec 29 13:13:41 2007
--
Bastien
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-orgmode