Browse Source

Always show current value when setting effort property

Carsten Dominik 15 years ago
parent
commit
dbe8c00c72
1 changed files with 3 additions and 1 deletions
  1. 3 1
      lisp/org.el

+ 3 - 1
lisp/org.el

@@ -12032,7 +12032,9 @@ allowed value."
 		(or (car (nth (1- value) allowed))
 		    (car (org-last allowed))))
 	       (allowed
-		(message "Select 1-9,0, [RET]: %s" (mapconcat 'car allowed " "))
+		(message "Select 1-9,0, [RET%s]: %s"
+			 (if cur (concat "=" cur) "")
+			 (mapconcat 'car allowed " "))
 		(setq rpl (read-char-exclusive))
 		(if (equal rpl ?\r)
 		    (setq val cur)