summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2010-08-23 13:32:00 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2010-09-01 19:05:55 +0200
commite2dc3cd985bcdb2a315f1978265190ce89736979 (patch)
tree35e231f7680f39691e334ae9fd6da122c297aea6
parent7a46718ec60560d84ff9884c25d6a0e1a7b9ab21 (diff)
downloadorg-mode-e2dc3cd985bcdb2a315f1978265190ce89736979.tar.gz
Small modification to `org-list-ending-method' docstring.
-rw-r--r--lisp/org-list.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/org-list.el b/lisp/org-list.el
index 8d1bad9..102cf8f 100644
--- a/lisp/org-list.el
+++ b/lisp/org-list.el
@@ -156,19 +156,19 @@ Valid values are: `regexp', `indent' or `both'.
When set to `regexp', Org will look into two variables,
`org-empty-line-terminates-plain-lists' and the more general
-`org-list-end-regexp', to know what will end lists. This is the
-fastest method.
+`org-list-end-regexp', to determine what will end lists. This is
+the fastest method.
When set to `indent', a list will end whenever a line following
an item, but not starting one, is less or equally indented than
it.
-When set to `both', each of the preceding methods must confirm
-that point is in a list. This is the default method."
+When set to `both', each of the preceding methods is applied to
+determine lists endings. This is the default method."
:group 'org-plain-lists
:type '(choice
- (const :tag "With a well defined ending (recommended)" regexp)
- (const :tag "With indentation of the current line" indent)
+ (const :tag "With a regexp defining ending" regexp)
+ (const :tag "With indentation of regular (no bullet) text" indent)
(const :tag "With both methods" both)))
(defcustom org-empty-line-terminates-plain-lists nil