Merge: 0.6.2
This commit is contained in:
commit
8933f8853c
2 changed files with 7 additions and 1 deletions
|
|
@ -526,6 +526,11 @@ Simple links may also be written manually in either sexp or non-sexp form, like:
|
||||||
|
|
||||||
Nothing new yet.
|
Nothing new yet.
|
||||||
|
|
||||||
|
** 0.6.2
|
||||||
|
|
||||||
|
*Fixed*
|
||||||
|
+ ~link~ predicate when used in an ~or~'ed query. ([[https://github.com/alphapapa/org-ql/issues/279][#279]]. Thanks to [[https://github.com/telenieko][Marc Fargas]] for reporting.)
|
||||||
|
|
||||||
** 0.6.1
|
** 0.6.1
|
||||||
|
|
||||||
*Fixed*
|
*Fixed*
|
||||||
|
|
|
||||||
|
|
@ -1461,7 +1461,8 @@ any link is found."
|
||||||
(setf description (regexp-quote description)))
|
(setf description (regexp-quote description)))
|
||||||
(when target
|
(when target
|
||||||
(setf target (regexp-quote target))))
|
(setf target (regexp-quote target))))
|
||||||
(when (re-search-forward org-ql-link-regexp (org-entry-end-position) t)
|
(when (save-excursion
|
||||||
|
(re-search-forward org-ql-link-regexp (org-entry-end-position) t))
|
||||||
(pcase description-or-target
|
(pcase description-or-target
|
||||||
('nil (and (or (null target)
|
('nil (and (or (null target)
|
||||||
(string-match-p target (match-string 1)))
|
(string-match-p target (match-string 1)))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue