AdamNiederer / cov

An emacs extension for displaying coverage data on your code
GNU General Public License v3.0
76 stars 16 forks source link

Fix broken macro cov--file-mtime #35

Closed snogge closed 3 years ago

snogge commented 3 years ago

cov--file-mtime was completely broken as a macro and always expanded to nil. As a defsubst it will do what is was originally meant to do.

Add new test verify the use of mtime in cov--load-coverage.

Add new defsubst cov--message and use it to suppress output during testing. This was not needed before as the messages were never triggered due to the broken macro.

AdamNiederer commented 3 years ago

tyvm!