-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: (helm-org-ql [v0.6.2]) Compilation warning
- Loading branch information
Showing
3 changed files
with
105 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
;; Author: Adam Porter <[email protected]> | ||
;; URL: https://github.com/alphapapa/org-ql | ||
;; Version: 0.6.1 | ||
;; Version: 0.6.2 | ||
;; Package-Requires: ((emacs "26.1") (dash "2.18.1") (s "1.12.0") (helm-org "1.0") (org-ql "0.6-pre")) | ||
|
||
;;; Commentary: | ||
|
@@ -44,6 +44,8 @@ | |
(require 'org-ql) | ||
(require 'org-ql-search) | ||
|
||
(declare-function org-ql--normalize-query "org-ql" t t) | ||
|
||
;;;; Variables | ||
|
||
(defvar helm-org-ql-map | ||
|
@@ -102,7 +104,7 @@ NAME is passed to `helm-org-ql-source', which see. | |
NOTE: Atoms in the query are turned into strings where | ||
appropriate, which makes it unnecessary to type quotation marks | ||
around words that are intended to be searched for as indepenent | ||
around words that are intended to be searched for as independent | ||
strings. | ||
All query tokens are wrapped in the operator BOOLEAN (default | ||
|
@@ -177,7 +179,7 @@ Is transformed into this query: | |
|
||
;;;###autoload | ||
(cl-defun helm-org-ql-source (buffers-files &key (name "helm-org-ql")) | ||
"Return Helm source named NAME that searches BUFFERS-FILES with `helm-org-ql'." | ||
"Return Helm source named NAME to search BUFFERS-FILES with `helm-org-ql'." | ||
;; Expansion of `helm-build-sync-source' macro. | ||
(helm-make-source name 'helm-source-sync | ||
:candidates (lambda () | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters