Tidy: Comment out unused form

Removes a linter warning for now.
This commit is contained in:
Adam Porter 2020-01-03 07:02:06 -06:00
parent 19833cbbec
commit 997765f9ea

View file

@ -59,9 +59,11 @@
(defun org-ql-test--format-result--ql (sexp) (defun org-ql-test--format-result--ql (sexp)
(let* ((value (eval sexp)) (let* ((value (eval sexp))
(prefix (if (and value (listp value)) ;; FIXME: Not sure why this is currently unused. Commenting out for now.
"'" ;; (prefix (if (and value (listp value))
""))) ;; "'"
;; ""))
)
(format "%S" value))) (format "%S" value)))
(defun org-ql-test--format-result--query-preamble (sexp) (defun org-ql-test--format-result--query-preamble (sexp)