Skip to content

Commit

Permalink
Fix docstring of cov-coverage-file-paths
Browse files Browse the repository at this point in the history
  • Loading branch information
snogge authored and AdamNiederer committed Oct 7, 2023
1 parent c094467 commit 42bf07c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cov.el
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,12 @@ example sets a lambda that searches the coverage file in the
current directory:
(setq cov-coverage-file-paths
(list #'(lambda (file-dir file-name)
(list (lambda (file-dir file-name)
(let ((try (format \"%s/%s%s\"
file-dir file-name
cov-coverage-file-extension)))
(and (file-exists-p try)
(cons (file-truename try) 'gcov))))))")
(cons (file-truename try) \='gcov))))))")

(defvar-local cov-coverage-file nil
"Last located coverage file and tool.")
Expand Down

0 comments on commit 42bf07c

Please sign in to comment.