summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2017-01-10 08:44:31 -0700
committerSean Whitton <spwhitton@spwhitton.name>2017-01-10 08:44:31 -0700
commit7bfe95e5810d68f1ed9aa04b473a8ebd10c6762b (patch)
tree3cee19292711df36af9ec52ba6fa7eda635efc3a /lib
parent22f5cf8dceec4ece5e09077b4b669771fe1c40d8 (diff)
avoid detecting "ert-deftest" in docstrings
Diffstat (limited to 'lib')
-rw-r--r--lib/DhMakeELPA/Command/make.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/DhMakeELPA/Command/make.pm b/lib/DhMakeELPA/Command/make.pm
index 5f23b23..791a933 100644
--- a/lib/DhMakeELPA/Command/make.pm
+++ b/lib/DhMakeELPA/Command/make.pm
@@ -68,7 +68,7 @@ sub create_control {
->name( '*.el' )
->or(
# ERT
- File::Find::Rule ->grep( "ert-deftest" ),
+ File::Find::Rule ->grep( "\\(ert-deftest" ),
# Buttercup
File::Find::Rule ->grep( "\\(describe \"" )
);