Paul Rudin <[email protected]> writes:
(about lists)
Here is a test for this problem. Notice that if you change the "a)" to "1."
- for example - the test passes. So this is something specific to
alphabetically labelled list items.
(ert-deftest org-list-item-test ()
(with-temp-buffer
(org-mode)
(let ((org-allow-alphabetical t)
(fill-column 70))
(insert "1. some stuff\n"
" a) an alphabetic list item with text longer that the current
fill column so that it gets wrapped by fill-paragraph")
(fill-paragraph)
(should (not (equal (org-in-item-p) 1))))))