From ed824d4e46ca08ed505a7282920628fbb8ebee28 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 4 Jan 2011 16:15:33 +0100 Subject: [PATCH] org.el: don't try to remove space in comma-separated tags. No space is allowed in the prompt, trying to remove them is confusing when reading the code. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 5efcc0665..5eb0bc8db 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -12776,7 +12776,7 @@ With prefix ARG, realign all tags in headings in the current buffer." ;; No boolean logic, just a list (setq tags (replace-match ":" t t tags)))) - (setq tags (replace-regexp-in-string "[ ,]" ":" tags)) + (setq tags (replace-regexp-in-string "[,]" ":" tags)) (if org-tags-sort-function (setq tags (mapconcat 'identity