--- a/hgext/record.py Wed Mar 11 16:18:47 2015 -0700
+++ b/hgext/record.py Wed Mar 11 16:39:38 2015 -0700
@@ -66,7 +66,8 @@
mq.refresh(ui, repo, **opts)
# backup all changed files
- cmdutil.dorecord(ui, repo, committomq, 'qrefresh', True, *pats, **opts)
+ cmdutil.dorecord(ui, repo, committomq, 'qrefresh', True,
+ cmdutil.recordfilter, *pats, **opts)
# This command registration is replaced during uisetup().
@command('qrecord',
@@ -91,7 +92,8 @@
opts['checkname'] = False
mq.new(ui, repo, patch, *pats, **opts)
- cmdutil.dorecord(ui, repo, committomq, 'qnew', False, *pats, **opts)
+ cmdutil.dorecord(ui, repo, committomq, 'qnew', False,
+ cmdutil.recordfilter, *pats, **opts)
def qnew(origfn, ui, repo, patch, *args, **opts):
if opts['interactive']: