Minor docstring fix

This commit is contained in:
Carsten Dominik 2009-09-28 20:35:49 +01:00
parent 0a0a9e5366
commit 6c147f0b1e
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2009-09-28 Carsten Dominik <carsten.dominik@gmail.com>
* 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).

View File

@ -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))