mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-25 07:27:57 +00:00
Fix broken org-bullets.
* contrib/lisp/org-bullets.el (org-bullets-mode): Remove bad require. Add comma in backticked list to evaluate org-outline-regexp-bol, which replaced a regexp constant.
This commit is contained in:
parent
ac2415ae38
commit
2d2cc48610
@ -82,9 +82,8 @@ If this is undesirable, one can remove them with
|
||||
(define-minor-mode org-bullets-mode
|
||||
"UTF-8 bullets for `org-mode'."
|
||||
nil nil nil
|
||||
(require 'org-mode)
|
||||
(let* ((keyword
|
||||
`((org-outline-regexp-bol
|
||||
`((,org-outline-regexp-bol
|
||||
(0 (let (( level (- (match-end 0) (match-beginning 0) 1)))
|
||||
(compose-region (- (match-end 0) 2)
|
||||
(- (match-end 0) 1)
|
||||
|
Loading…
Reference in New Issue
Block a user