Nick Dokos <ndo...@gmail.com> writes: > David Masterson <dsmaster...@gmail.com> writes: > >> I got most of Org working again, but then the following error came up in >> org-agenda. I removed the ELC files to try to make the error more >> clear. Anyone know what the problem is? >> >> Debugger entered--Lisp error: (wrong-type-argument integer-or-marker-p nil) >> put-text-property(23003 nil org-effort "15") >> ... >> org-refresh-properties("Effort" org-effort) >> ... >> org-agenda-prepare("TODO") >> ... >> org-todo-list(nil) >> call-interactively(org-todo-list) >> ... > > Try this patch: > > diff --git a/lisp/org.el b/lisp/org.el > index f8615a2..bd9c05e 100644 > --- a/lisp/org.el > +++ b/lisp/org.el > @@ -9393,7 +9393,7 @@ property to set." > (save-excursion > (org-back-to-heading t) > (put-text-property > - (point-at-bol) (outline-next-heading) tprop p)))))))) > + (point-at-bol) (or (outline-next-heading) (point-max)) tprop > p)))))))) > > > ;;;; Link Stuff >
This works for me -- thanks. -- David Masterson