`org-set-property': remove useless space in the prompt.

This commit is contained in:
Bastien Guerry 2010-02-25 15:17:48 +01:00
parent 1d3a4f1eb7
commit 1b1433e079
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2010-02-25 Bastien Guerry <bzg@altern.org>
* org.el (org-set-property): Remove useless space in the prompt.
2010-02-25 Carsten Dominik <carsten.dominik@gmail.com>
* org-html.el (org-export-html-style-default): Add a default style

View File

@ -12952,8 +12952,8 @@ in the current file."
(caar allowed))))
(let (org-completion-use-ido org-completion-use-iswitchb)
(org-completing-read
(concat "Value " (if (and cur (string-match "\\S-" cur))
(concat "[" cur "]") "")
(concat "Value" (if (and cur (string-match "\\S-" cur))
(concat " [" cur "]") "")
": ")
existing nil nil "" nil cur)))))
(list prop (if (equal val "") cur val))))