0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-17 09:36:26 +00:00

Allow a second space after "1." bullet for line wrapping.

This commit is contained in:
Carsten Dominik 2008-11-21 06:00:42 +01:00
parent 0529c08e5b
commit ab20e602b1
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-11-21 Carsten Dominik <carsten.dominik@gmail.com>
* org.el (org-adaptive-fill-function): Allow two spaces after
"1." as a list bullet.
2008-11-20 Carsten Dominik <carsten.dominik@gmail.com>
* org-clock.el (org-clock-save, org-clock-load): Check for

View file

@ -13958,7 +13958,7 @@ work correctly."
(goto-char (+ (match-beginning 1) 5))
(goto-char (match-end 0)))
(make-string (current-column) ?\ )))
((looking-at "[ \t]*\\([-*+] \\|[0-9]+[.)] \\)?")
((looking-at "[ \t]*\\([-*+] \\|[0-9]+[.)] ?\\)?")
(save-excursion
(goto-char (match-end 0))
(make-string (current-column) ?\ )))