Michael Brand <michael.ch.br...@gmail.com> wrote: > Hi all > > Since > http://orgmode.org/w/?p=org-mode.git;a=commitdiff;h=15798836e2bb84bebfb005375e08e38830fc90ee > from yesterday or with the newest release_7.7-194-gd203b61 when I try > to open the agenda with a minimal setup I get "save-excursion: > Symbol's value as variable is void: category-pos". Anybody else too? > > Michael >
Yup - I patched it with a band-aid for now (I had to to get emacs started), but I haven't really looked deeper: diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index e3236e5..e26d08c 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -3793,7 +3793,7 @@ (defun org-search-view (&optional todo-only string edit-at) (full-words org-agenda-search-view-force-full-words) (org-agenda-text-search-extra-files org-agenda-text-search-extra-files) regexp rtn rtnall files file pos - marker category tags c neg re boolean + marker category category-pos tags c neg re boolean ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str) (unless (and (not edit-at) (stringp string) @@ -4730,7 +4730,7 @@ (defun org-agenda-get-timestamps () "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[dwmy]>\\)" "\\|\\(<%%\\(([^>\n]+)\\)>\\)")) marker hdmarker deadlinep scheduledp clockp closedp inactivep - donep tmp priority category ee txt timestr tags b0 b3 e3 head + donep tmp priority category category-pos ee txt timestr tags b0 b3 e3 head todo-state end-of-match show-all) (goto-char (point-min)) (while (setq end-of-match (re-search-forward regexp nil t)) DEVS: please don't apply this without some investigation - afaik, it's just a workaround for the problem. Thanks, Nick