Skip to content

Commit a5650e2

Browse files
committed
Merge: v0.8.10
2 parents b6f8a31 + 9c53c1b commit a5650e2

File tree

3 files changed

+159
-134
lines changed

3 files changed

+159
-134
lines changed

README.org

+6-1
Original file line numberDiff line numberDiff line change
@@ -567,13 +567,18 @@ Simple links may also be written manually in either sexp or non-sexp form, like:
567567

568568
*Fixes*
569569
+ Customization group for face ~org-ql-view-due-date~.
570-
+ Command ~org-ql-refile~ uses the base buffer when refiling to an indirect buffer.
571570
+ Apply Org syntax font-locking to items in ~org-ql-view~ buffers.
572571

573572
*** helm-org-ql
574573

575574
Tagged v0.6.2, fixing a compilation warning.
576575

576+
** 0.8.10
577+
578+
*Fixes*
579+
+ Command ~org-ql-refile~ uses the base buffer when refiling to an indirect buffer. ([[https://github.com/alphapapa/org-ql/issues/466][#466]].)
580+
+ Predicate ~link~ could signal an error when searching text that is mistakenly recognized as an Org link (e.g. Bash double-bracket constructs in a source block). (Thanks to [[https://github.com/jwiegley][John Wiegley]] for reporting.)
581+
577582
** 0.8.9
578583

579584
*Fixes*

org-ql.el

+9-5
Original file line numberDiff line numberDiff line change
@@ -1626,11 +1626,15 @@ any link is found."
16261626
(or (null description)
16271627
(string-match-p description (match-string org-ql-link-description-group)))))
16281628
(_ (if (and description target)
1629-
(and (string-match-p target (match-string 1))
1630-
(string-match-p description (match-string org-ql-link-description-group)))
1631-
(or (string-match-p description-or-target (match-string 1))
1632-
(string-match-p description-or-target
1633-
(match-string org-ql-link-description-group)))))))))
1629+
(and (and (match-string 1)
1630+
(string-match-p target (match-string 1)))
1631+
(and (match-string org-ql-link-description-group)
1632+
(string-match-p description (match-string org-ql-link-description-group))))
1633+
(or (and (match-string 1)
1634+
(string-match-p description-or-target (match-string 1)))
1635+
(and (match-string org-ql-link-description-group)
1636+
(string-match-p description-or-target
1637+
(match-string org-ql-link-description-group))))))))))
16341638

16351639
(org-ql-defpred (rifle smart) (&rest strings)
16361640
"Return non-nil if each of strings is found in the entry or its outline path.

0 commit comments

Comments
 (0)