Browse Source

Fix `org-compute-property-at-point'

* lisp/org.el (org-compute-property-at-point): Properties are
  case-insensitive.
Nicolas Goaziou 9 years ago
parent
commit
a16eba2a02
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org.el

+ 1 - 1
lisp/org.el

@@ -16356,7 +16356,7 @@ then applies it to the property in the column format's scope."
     (user-error "Not at a property"))
   (let ((prop (org-match-string-no-properties 2)))
     (org-columns-get-format-and-top-level)
-    (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
+    (unless (nth 3 (assoc-string prop org-columns-current-fmt-compiled t))
       (user-error "No operator defined for property %s" prop))
     (org-columns-compute prop)))