Ticket #2001 (closed defect: fixed)

Opened 14 years ago

Last modified 14 years ago

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 14 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 14 years ago by slavazanko

  • severity changed from no branch to on review

reated branch 2001_broken_filemask (parent: master)

Initial changeset:9a47f7647800fc22441ea4fa30ed662fa3917049

comment:3 Changed 14 years ago by andrew_b

  • Votes for changeset set to andrew_b

comment:4 Changed 14 years ago by angel_il

  • Votes for changeset changed from andrew_b to andrew_b angel_il
  • severity changed from on review to approved

comment:5 Changed 14 years ago by slavazanko

  • Status changed from accepted to testing
  • Votes for changeset changed from andrew_b angel_il to commited-master commited-stable
  • Resolution set to fixed
  • severity changed from approved to merged

comment:6 Changed 14 years ago by slavazanko

  • Status changed from testing to closed

comment:7 Changed 14 years ago by slavazanko

  • Keywords stable-candidate removed
Note: See TracTickets for help on using tickets.