Skip to content

Commit

Permalink
fix 4945
Browse files Browse the repository at this point in the history
  • Loading branch information
alabuzhev committed May 1, 2017
1 parent 88f011f commit d65c810
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions far/changelog
@@ -1,3 +1,7 @@
drkns 01.05.2017 22:42:32 +0000 - build 4948

1. Уточнение 4945.

zg 01.05.2017 16:49:59 +0200 - build 4947

1. уточнение 4945: в командной строке и в строках редактирования не работал CtrlEnd при отключённом автодополнении.
Expand Down
4 changes: 2 additions & 2 deletions far/copy.cpp
Expand Up @@ -1828,7 +1828,7 @@ COPY_CODES ShellCopy::ShellCopyOneFile(

if (Rename)
{
CmpCode = equal_icase(PointToName(Src), PointToName(strDestPath));
CmpCode = equal(PointToName(Src), PointToName(strDestPath));
}

if (CmpCode==1)
Expand Down Expand Up @@ -2201,7 +2201,7 @@ COPY_CODES ShellCopy::ShellCopyOneFile(

if (Rename)
{
CmpCode = equal_icase(PointToName(Src), PointToName(strDestPath));
CmpCode = equal(PointToName(Src), PointToName(strDestPath));
}

if (CmpCode==1 && !Rename)
Expand Down
2 changes: 1 addition & 1 deletion far/vbuild.m4
@@ -1 +1 @@
m4_define(BUILD,4947)m4_dnl
m4_define(BUILD,4948)m4_dnl

0 comments on commit d65c810

Please sign in to comment.