mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-22 07:09:47 +00:00
org-list: remove dependency on `org-back-over-empty-lines'
* lisp/org-list.el (org-list-separating-blank-lines-number): the behaviour of `org-back-over-empty-lines' depends on the associated value of `headline' in `org-blank-before-new-entry', which is out of context in a list.
This commit is contained in:
parent
5303994d9a
commit
405ebb43df
@ -94,7 +94,6 @@
|
||||
|
||||
(declare-function org-at-heading-p "org" (&optional ignored))
|
||||
(declare-function org-before-first-heading-p "org" ())
|
||||
(declare-function org-back-over-empty-lines "org" ())
|
||||
(declare-function org-back-to-heading "org" (&optional invisible-ok))
|
||||
(declare-function org-combine-plists "org" (&rest plists))
|
||||
(declare-function org-count "org" (cl-item cl-seq))
|
||||
@ -1167,7 +1166,16 @@ some heuristics to guess the result."
|
||||
(let ((item (point))
|
||||
(insert-blank-p
|
||||
(cdr (assq 'plain-list-item org-blank-before-new-entry)))
|
||||
usr-blank)
|
||||
usr-blank
|
||||
(count-blanks
|
||||
(function
|
||||
(lambda ()
|
||||
;; Count blank lines above beginning of line.
|
||||
(save-excursion
|
||||
(count-lines (goto-char (point-at-bol))
|
||||
(progn (skip-chars-backward " \r\t\n")
|
||||
(forward-line)
|
||||
(point))))))))
|
||||
(cond
|
||||
;; Trivial cases where there should be none.
|
||||
((or (and (not (eq org-list-ending-method 'indent))
|
||||
@ -1181,16 +1189,15 @@ some heuristics to guess the result."
|
||||
(cond
|
||||
;; Is there a next item?
|
||||
(next-p (goto-char next-p)
|
||||
(org-back-over-empty-lines))
|
||||
(funcall count-blanks))
|
||||
;; Is there a previous item?
|
||||
((org-list-get-prev-item item struct prevs)
|
||||
(org-back-over-empty-lines))
|
||||
(funcall count-blanks))
|
||||
;; User inserted blank lines, trust him.
|
||||
((and (> pos (org-list-get-item-end-before-blank item struct))
|
||||
(> (save-excursion
|
||||
(goto-char pos)
|
||||
(skip-chars-backward " \t")
|
||||
(setq usr-blank (org-back-over-empty-lines))) 0))
|
||||
(> (save-excursion (goto-char pos)
|
||||
(setq usr-blank (funcall count-blanks)))
|
||||
0))
|
||||
usr-blank)
|
||||
;; Are there blank lines inside the list so far?
|
||||
((save-excursion
|
||||
|
Loading…
Reference in New Issue
Block a user