Skip to content

Commit 6ced616

Browse files
committed
Tidy: Docstring, add comment
1 parent 5fab48e commit 6ced616

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

org-ql-view.el

+4
Original file line numberDiff line numberDiff line change
@@ -1006,6 +1006,10 @@ property."
10061006
;; These functions are somewhat regrettable because of the need to keep them
10071007
;; in sync, but it seems worth it to provide users with the flexibility.
10081008

1009+
;; FIXME: `check-declare' declares that this function is not in org-ql-search, even though
1010+
;; it is. It appears to happen because `org-ql-search-directories-files' is declared with
1011+
;; `cl-defun', because when I remove "cl-", it finds it. This makes no sense, because the
1012+
;; source code of `check-declare' shows that it searches for "cl-defun" declarations.
10091013
(declare-function org-ql-search-directories-files "org-ql-search" t)
10101014

10111015
(defun org-ql-view--contract-buffers-files (buffers-files)

org-ql.el

+3-4
Original file line numberDiff line numberDiff line change
@@ -673,8 +673,8 @@ Arguments STRING, POS, FILL, and LEVEL are according to
673673

674674
(defun org-ql--def-query-string-to-sexp-fn (predicates)
675675
"Define function `org-ql--query-string-to-sexp' according to PREDICATES.
676-
Builds the PEG expression using PREDICATES (which should be the
677-
value of `org-ql-predicates')."
676+
Builds the PEG expression using PREDICATES (which should be the
677+
value of `org-ql-predicates')."
678678
(let* ((names (--map (symbol-name (plist-get (cdr it) :name))
679679
predicates))
680680
(aliases (->> predicates
@@ -726,8 +726,7 @@ Arguments STRING, POS, FILL, and LEVEL are according to
726726
;; have to borrow some code. It ends up that we only have to
727727
;; borrow this `with-peg-rules' call, which isn't too bad.
728728
(eval `(with-peg-rules ,pexs
729-
(peg-run (peg ,(caar pexs)) #'peg-signal-failure)))
730-
)))
729+
(peg-run (peg ,(caar pexs)) #'peg-signal-failure))))))
731730
(pcase parsed-sexp
732731
(`(,one-predicate) one-predicate)
733732
(`(,_ . ,_) (cons boolean (reverse parsed-sexp)))

0 commit comments

Comments
 (0)