diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8d961ecce..c68777148 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -2,6 +2,7 @@ * org-list.el (org-toggle-checkbox): Make double prefix set the checkbox to "[-]". + (org-fix-bullet-type): Only replace bullet it it is changed. * org.el (org-add-log-setup): Fix positioning when `org-log-states-order-reversed' is nil. diff --git a/lisp/org-list.el b/lisp/org-list.el index 0440644d6..708bc93b0 100644 --- a/lisp/org-list.el +++ b/lisp/org-list.el @@ -761,7 +761,7 @@ Also, fix the indentation." (skip-chars-forward " \t") (looking-at "\\S-+ *") (setq oldbullet (match-string 0)) - (replace-match bullet) + (unless (equal bullet oldbullet) (replace-match bullet)) (org-shift-item-indentation (- (length bullet) (length oldbullet)))))) (goto-line line) (org-move-to-column col)