ソースを参照

Minor docstring fix

Carsten Dominik 15 年 前
コミット
6c147f0b1e
2 ファイル変更3 行追加1 行削除
  1. 2 0
      lisp/ChangeLog
  2. 1 1
      lisp/org-macs.el

+ 2 - 0
lisp/ChangeLog

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

+ 1 - 1
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))