diff options
| author | Rick Frankel <rick@rickster.com> | 2013-03-16 02:23:00 (GMT) |
|---|---|---|
| committer | Rick Frankel <rick@rickster.com> | 2013-03-16 02:23:00 (GMT) |
| commit | 2d2cc48610403d61eaad92bf26263c9d72987057 (patch) | |
| tree | b0a75b1bb15b9d74e4f98ec48f4d88bb25bbf21d | |
| parent | ac2415ae3857ae6280916497bcb9c933f0d5a6b8 (diff) | |
| download | org-mode-2d2cc48610403d61eaad92bf26263c9d72987057.zip org-mode-2d2cc48610403d61eaad92bf26263c9d72987057.tar.gz | |
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.
| -rw-r--r-- | contrib/lisp/org-bullets.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/lisp/org-bullets.el b/contrib/lisp/org-bullets.el index 795ca4f..2951bf8 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) |
