From 2d2cc48610403d61eaad92bf26263c9d72987057 Mon Sep 17 00:00:00 2001 From: Rick Frankel Date: Fri, 15 Mar 2013 22:23:00 -0400 Subject: [PATCH] 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. --- contrib/lisp/org-bullets.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/contrib/lisp/org-bullets.el b/contrib/lisp/org-bullets.el index 795ca4fc9..2951bf8ac 100644 --- a/contrib/lisp/org-bullets.el +++ b/contrib/lisp/org-bullets.el @@ -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) -- 2.11.4.GIT