소스 검색

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.
Bastien Guerry 14 년 전
부모
커밋
ed824d4e46
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lisp/org.el

+ 1 - 1
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