|
@@ -1028,6 +1028,12 @@ Assumes cursor in item line."
|
|
(skip-chars-forward " \t")
|
|
(skip-chars-forward " \t")
|
|
(setq ind-down (current-column)
|
|
(setq ind-down (current-column)
|
|
bullet-down (org-get-bullet)))))
|
|
bullet-down (org-get-bullet)))))
|
|
|
|
+ (if (and bullet-down (string-match "\\`[0-9]+\\(\\.\\|)\\)\\'" bullet-down))
|
|
|
|
+ (setq bullet-down (concat "1" (match-string 1 bullet-down))))
|
|
|
|
+ (if (and bullet-up (string-match "\\`[0-9]+\\(\\.\\|)\\)\\'" bullet-up))
|
|
|
|
+ (setq bullet-up (concat "1" (match-string 1 bullet-up))))
|
|
|
|
+ (if (and bullet (string-match "\\`[0-9]+\\(\\.\\|)\\)\\'" bullet))
|
|
|
|
+ (setq bullet (concat "1" (match-string 1 bullet))))
|
|
(list (cons ind bullet)
|
|
(list (cons ind bullet)
|
|
(cons ind-up bullet-up)
|
|
(cons ind-up bullet-up)
|
|
(cons ind-down bullet-down))))
|
|
(cons ind-down bullet-down))))
|