summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-03-14 13:41:06 +0100
committerBastien Guerry <bzg@altern.org>2013-03-14 13:41:06 +0100
commit8481088c4a854474d2e7c4bb7480d432c1781e52 (patch)
treeb8643f5ca4563e5513fab847ac41f802dfc3d7f5
parenta5a676e6092898895b61c00229e07910507f8f0c (diff)
downloadorg-mode-8481088c4a854474d2e7c4bb7480d432c1781e52.tar.gz
org-list.el: Rename some options and add aliases
* org-list.el (org-cycle-include-plain-lists): Also add to the 'org-cycle customization group. (org-list-allow-alphabetical) (org-checkbox-hierarchical-statistics) (org-list-empty-line-terminates-plain-lists) (org-list-description-max-indent): Rename and add aliases to old names.
-rw-r--r--lisp/org-list.el17
1 files changed, 13 insertions, 4 deletions
diff --git a/lisp/org-list.el b/lisp/org-list.el
index b5d8352..246bdc7 100644
--- a/lisp/org-list.el
+++ b/lisp/org-list.el
@@ -161,6 +161,7 @@ plain list item with an implied large level number, all true
children and grand children of the outline heading will be
exposed in a children' view."
:group 'org-plain-lists
+ :group 'org-cycle
:type '(choice
(const :tag "Never" nil)
(const :tag "With cursor in plain list (recommended)" t)
@@ -216,7 +217,9 @@ Valid values are ?. and ?\). To get both terminators, use t."
(const :tag "paren like in \"2)\"" ?\))
(const :tag "both" t)))
-(defcustom org-alphabetical-lists nil
+(defvaralias 'org-alphabetical-lists
+ 'org-list-allow-alphabetical) ;; Since 8.0
+(defcustom org-list-allow-alphabetical nil
"Non-nil means single character alphabetical bullets are allowed.
Both uppercase and lowercase are handled. Lists with more than
26 items will fallback to standard numbering. Alphabetical
@@ -237,7 +240,9 @@ spaces instead of one after the bullet in each item of the list."
(const :tag "never" nil)
(regexp)))
-(defcustom org-empty-line-terminates-plain-lists nil
+(defvaralias 'org-empty-line-terminates-plain-lists
+ 'org-list-empty-line-terminates-plain-lists) ;; Since 8.0
+(defcustom org-list-empty-line-terminates-plain-lists nil
"Non-nil means an empty line ends all plain list levels.
Otherwise, two of them will be necessary."
:group 'org-plain-lists
@@ -289,7 +294,9 @@ This hook runs even if checkbox rule in
implement alternative ways of collecting statistics
information.")
-(defcustom org-hierarchical-checkbox-statistics t
+(defvaralias 'org-hierarchical-checkbox-statistics
+ 'org-checkbox-hierarchical-statistics) ;; Since 8.0
+(defcustom org-checkbox-hierarchical-statistics t
"Non-nil means checkbox statistics counts only the state of direct children.
When nil, all boxes below the cookie are counted.
This can be set to nil on a per-node basis using a COOKIE_DATA property
@@ -297,7 +304,9 @@ with the word \"recursive\" in the value."
:group 'org-plain-lists
:type 'boolean)
-(defcustom org-description-max-indent 20
+(defvaralias 'org-description-max-indent
+ 'org-list-description-max-indent) ;; Since 8.0
+(defcustom org-list-description-max-indent 20
"Maximum indentation for the second line of a description list.
When the indentation would be larger than this, it will become
5 characters instead."