diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 91c2a797d..e947a0ba9 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2009-09-28 Carsten Dominik + * org-macs.el (org-if-unprotected-at): Fix docstring. + * org-agenda.el (org-agenda-change-all-lines): Handle invisible text in the prefix (if category is a link). diff --git a/lisp/org-macs.el b/lisp/org-macs.el index 192e1cdd7..435a8d9c0 100644 --- a/lisp/org-macs.el +++ b/lisp/org-macs.el @@ -118,7 +118,7 @@ We use a macro so that the test can happen at compilation time." ,@body)) (defmacro org-if-unprotected-at (pos &rest body) - "Execute BODY if there is no `org-protected' text property at point-1." + "Execute BODY if there is no `org-protected' text property at POS." `(unless (get-text-property ,pos 'org-protected) ,@body))