summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2010-02-25 15:17:48 +0100
committerBastien Guerry <bzg@altern.org>2010-02-25 15:17:48 +0100
commit1b1433e0791030da6c617e82166d1e6f3ce81fd7 (patch)
tree939cbd59c2b72695f3fcd513bc58cf7d9e00ea56
parent1d3a4f1eb7db02b938e429a1841b7dc2bea70de9 (diff)
downloadorg-mode-1b1433e0791030da6c617e82166d1e6f3ce81fd7.tar.gz
`org-set-property': remove useless space in the prompt.
-rwxr-xr-xlisp/ChangeLog4
-rw-r--r--lisp/org.el4
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ccf4640..fe7c98a 100755
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -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
diff --git a/lisp/org.el b/lisp/org.el
index 8ba782a..329655b 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -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))))