Ian Dunn <[email protected]> writes: > Remember to cover the basics, that is, what you expected to happen and > what in fact did happen. You don't know how to make a good report? See > > http://orgmode.org/manual/Feedback.html#Feedback > > Your bug report will be posted to the Org-mode mailing list. > ------------------------------------------------------------------------ > > For some time now, I've been noticing that org-agenda-redo (the > 'g' key in the Agenda buffer, since it isn't *exactly* the same) often > fails with the error "Invalid Function 4". I looked into this, and > discovered that it only happened when I used a tag view list with only > TODO items. A backtrace showed that the issue was the redo command, and > I believe I have solved the problem with the following patch: > > diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el > index e9f3505..2f7241b 100644 > --- a/lisp/org-agenda.el > +++ b/lisp/org-agenda.el > @@ -4852,7 +4852,7 @@ The prefix arg TODO-ONLY limits the search to TODO > entries." > (setq org-agenda-query-string match) > (setq org-agenda-redo-command > (list 'org-tags-view > - org--matcher-tags-todo-only > + (list 'quote org--matcher-tags-todo-only) > `(if current-prefix-arg nil ,org-agenda-query-string))) > (setq files (org-agenda-files nil 'ifmode) > rtnall nil) > > If my patch doesn't work, I at least hope it helps everyone figure out > the real problem. > > Thank you for your time.
I don't know if the patch is good (it probably is), but the *real* problem is what's shown by that backtrace you mentioned, so you should include the backtrace in your bug report (at least in the future). -- Nick
