summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-06-27 17:37:50 +0200
committerBastien Guerry <bzg@altern.org>2013-06-27 17:37:50 +0200
commit4a704a77ffb1399538c9527da592ecf24629517f (patch)
tree7f8b8c5a3d3f930f267260be2a0004f8818d9e76
parent370a2bfb4f2530b6a8e3a4f12358810413198081 (diff)
parentb0059198c31b6454995fef50115636744565230e (diff)
downloadorg-mode-4a704a77ffb1399538c9527da592ecf24629517f.tar.gz
Merge branch 'maint'
-rw-r--r--lisp/org-mouse.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org-mouse.el b/lisp/org-mouse.el
index fbdc7fb..c8a6c86 100644
--- a/lisp/org-mouse.el
+++ b/lisp/org-mouse.el
@@ -656,11 +656,11 @@ This means, between the beginning of line and the point."
["All Clear" (org-mouse-for-each-item
(lambda ()
(when (save-excursion (org-at-item-checkbox-p))
- (replace-match "[ ]"))))]
+ (replace-match "[ ] "))))]
["All Set" (org-mouse-for-each-item
(lambda ()
(when (save-excursion (org-at-item-checkbox-p))
- (replace-match "[X]"))))]
+ (replace-match "[X] "))))]
["All Toggle" (org-mouse-for-each-item 'org-toggle-checkbox) t]
["All Remove" (org-mouse-for-each-item
(lambda ()