summaryrefslogtreecommitdiff
path: root/lisp/org-pcomplete.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/org-pcomplete.el')
-rw-r--r--lisp/org-pcomplete.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/org-pcomplete.el b/lisp/org-pcomplete.el
index f3b498e..5a52491 100644
--- a/lisp/org-pcomplete.el
+++ b/lisp/org-pcomplete.el
@@ -315,10 +315,11 @@ This needs more work, to handle headings with lots of spaces in them."
(save-excursion
(goto-char (point-min))
(let (tbl)
- (while (re-search-forward org-todo-line-regexp nil t)
- (push (org-make-org-heading-search-string
- (match-string-no-properties 3))
- tbl))
+ (let ((case-fold-search nil))
+ (while (re-search-forward org-todo-line-regexp nil t)
+ (push (org-make-org-heading-search-string
+ (match-string-no-properties 3))
+ tbl)))
(pcomplete-uniqify-list tbl)))
(substring pcomplete-stub 1))))