Browse Source

Tiny fix

* lisp/org.el (org-sparse-tree): Tiny fix.
Nicolas Goaziou 11 years ago
parent
commit
f9c93aaa49
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lisp/org.el

+ 2 - 2
lisp/org.el

@@ -13510,8 +13510,8 @@ D      Show deadlines and scheduled items between a date range."
 	      (value (org-icompleting-read
 		      "Value: " (mapcar #'list (org-property-values kwd)))))
 	 (unless (string-match "\\`{.*}\\'" value)
-	   (setq value (concat "\"" value "\""))))
-       (org-match-sparse-tree arg (concat kwd "=" value)))
+	   (setq value (concat "\"" value "\"")))
+	 (org-match-sparse-tree arg (concat kwd "=" value))))
       ((?r ?R ?/) (call-interactively #'org-occur))
       (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))