diff options
Diffstat (limited to 'lisp/allout.el')
-rw-r--r-- | lisp/allout.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/allout.el b/lisp/allout.el index d18fcc2e9b9..d3867f0b64f 100644 --- a/lisp/allout.el +++ b/lisp/allout.el @@ -217,7 +217,7 @@ The types of elements in the layout specification are: -- positive numbers open to the relative depth indicated by the number, but do not force already opened subtopics to be closed. -- 0 means to close topic -- hide all subitems. - : -- repeat spec -- apply the preceeding element to all siblings at + : -- repeat spec -- apply the preceding element to all siblings at current level, *up to* those siblings that would be covered by specs following the `:' on the list. Ie, apply to all topics at level but trailing ones accounted for by trailing specs. (Only the first of @@ -3173,7 +3173,7 @@ situation." nil) ;; rationale: if any intervening items were at a lower depth, we ;; would now be on the first offspring at the target depth -- ie, - ;; the preceeding item (per the search direction) must be at a + ;; the preceding item (per the search direction) must be at a ;; lesser depth. that's all we need to check. (if backward (allout-next-heading) (allout-previous-heading)) (if (< allout-recent-depth target-depth) @@ -4276,7 +4276,7 @@ With a negative argument, the item is shifted out using With an argument greater than one, shift-in the item but not its offspring, making the item into a sibling of its former children, -and a child of sibling that formerly preceeded it. +and a child of sibling that formerly preceded it. You are not allowed to shift the first offspring of a topic inwards, because that would yield a \"containment @@ -5394,7 +5394,7 @@ header and body. The elements of that list are: (goto-char start) (beginning-of-line) - ;; Goto initial topic, and register preceeding stuff, if any: + ;; Goto initial topic, and register preceding stuff, if any: (if (> (allout-goto-prefix-doublechecked) start) ;; First topic follows beginning point -- register preliminary stuff: (setq result (list (list 0 "" nil |