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 property checking in cov-mode--overlay-face-test #14

Closed snogge closed 7 years ago

snogge commented 7 years ago

The equal function does not compare text properties, and the recommended function equal-including-properties does not handle properties with list values correctly.

Add a new helper function cov-mode--equal-including-properties and use it to check the before-strings in cov-mode--overlay-face-test.

AdamNiederer commented 7 years ago

Looks good; thanks!