0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-12 06:39:54 +00:00

org.el: Use case-folding when trying to match clocktables and source blocks contexts

* org.el (org-context): Use case-folding when trying to match
clocktables and source blocks contexts.
This commit is contained in:
Bastien Guerry 2012-08-19 08:26:35 +02:00
parent 62064c73fc
commit 788f7da285

View file

@ -20352,6 +20352,7 @@ and :keyword."
(push (list :table-table) clist)))
(goto-char p)
(let ((case-fold-search t))
;; New the "medium" contexts: clocktables, source blocks
(cond ((org-in-clocktable-p)
(push (list :clocktable
@ -20366,7 +20367,7 @@ and :keyword."
(search-backward "#+BEGIN_SRC" nil t))
(match-beginning 0))
(and (search-forward "#+END_SRC" nil t)
(match-beginning 0))) clist)))
(match-beginning 0))) clist))))
(goto-char p)
;; Now the small context