Ticket #2001 (closed defect: fixed)
Broken default regexp mask in filecopy dialog
Reported by: | slavazanko | Owned by: | slavazanko |
---|---|---|---|
Priority: | minor | Milestone: | 4.7.2 |
Component: | mc-core | Version: | master |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Branch state: | Votes for changeset: | committed-master committed-stable |
Description
Default regexp mask '^\(.*\)$' looks broken.
Need to change line at src/filegui.c:905
QUICK_INPUT (3, FMDX, 3, FMDY, easy_patterns ? "*" : "^\\(.*\\)$", 58, 0, "input-def", &source_mask),
replace to
QUICK_INPUT (3, FMDX, 3, FMDY, easy_patterns ? "*" : "^(.*)$", 58, 0, "input-def", &source_mask),
Thanks to A.M. Genaev
Change History
comment:1 Changed 15 years ago by slavazanko
- Owner set to slavazanko
- Keywords stable-candidate added
- Status changed from new to accepted
- Milestone changed from 4.7 to 4.7.2
comment:2 Changed 15 years ago by slavazanko
- severity changed from no branch to on review
reated branch 2001_broken_filemask (parent: master)
comment:4 Changed 15 years ago by angel_il
- Votes for changeset changed from andrew_b to andrew_b angel_il
- severity changed from on review to approved
Note: See
TracTickets for help on using
tickets.