aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBastien Guerry2011-07-28 17:25:29 +0200
committerBastien Guerry2011-07-28 17:25:29 +0200
commit58e9b49a90338bf979b86951b6d85e60308ecc3e (patch)
treeaf8ffe5739a91c789db5285765ad0829b91b10f1
parent3ab2c837b302b01fff610f7b83050ab7e703477c (diff)
downloademacs-58e9b49a90338bf979b86951b6d85e60308ecc3e.tar.gz
emacs-58e9b49a90338bf979b86951b6d85e60308ecc3e.zip
org: don't always refresh the agenda.
-rw-r--r--lisp/org/ChangeLog5
-rw-r--r--lisp/org/org-agenda.el4
2 files changed, 2 insertions, 7 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog
index a11db6f7b63..6af95d39ae2 100644
--- a/lisp/org/ChangeLog
+++ b/lisp/org/ChangeLog
@@ -1,10 +1,5 @@
12011-07-28 Bastien Guerry <bzg@gnu.org> 12011-07-28 Bastien Guerry <bzg@gnu.org>
2 2
3 * org-agenda.el (org-agenda-filter-by-tag): bugfix: always refresh
4 the agenda when needed.
5
62011-07-28 Bastien Guerry <bzg@gnu.org>
7
8 * org-publish.el (org-publish-index-generate-theindex): rename 3 * org-publish.el (org-publish-index-generate-theindex): rename
9 from `org-publish-index-generate-theindex.inc'. Use the file 4 from `org-publish-index-generate-theindex.inc'. Use the file
10 theindex.org directly instead of including theindex.inc. 5 theindex.org directly instead of including theindex.inc.
diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el
index 9502c2f2b6b..d47013b76f1 100644
--- a/lisp/org/org-agenda.el
+++ b/lisp/org/org-agenda.el
@@ -6202,8 +6202,8 @@ to switch to narrowing."
6202 (org-agenda-filter-apply org-agenda-filter) 6202 (org-agenda-filter-apply org-agenda-filter)
6203 (setq maybe-refresh t)) 6203 (setq maybe-refresh t))
6204 (t (error "Invalid tag selection character %c" char))) 6204 (t (error "Invalid tag selection character %c" char)))
6205 (when (or maybe-refresh 6205 (when (and maybe-refresh
6206 (eq org-agenda-clockreport-mode 'with-filter)) 6206 (eq org-agenda-clockreport-mode 'with-filter))
6207 (org-agenda-redo)))) 6207 (org-agenda-redo))))
6208 6208
6209(defun org-agenda-get-represented-tags () 6209(defun org-agenda-get-represented-tags ()