forked from Lainports/freebsd-ports
[FDclone-users:00266] Properly expand globs like <"/usr/"*> and </usr\/*>. [FDclone-users:00274] Complete the previous fix and make <'/usr/'*> work. [FDclone-users:00275] Fix a bug where a recursive copy fails when the destination directory has a trailing slash. [FDclone-users:00276] Remove superfluous calls of chflags(2) to supress errors on filesystems that do not support file flags. [FDclone-users:00278] Disable path name completion RENAME_FILE.
13 lines
308 B
C
13 lines
308 B
C
[FDclone-users:00278]
|
|
Disable path name completion RENAME_FILE.
|
|
--- input.c.orig Sat Apr 24 01:46:44 2004
|
|
+++ input.c Sun May 23 05:52:56 2004
|
|
@@ -2506,7 +2506,7 @@
|
|
#ifndef _NOCOMPLETE
|
|
case '\t':
|
|
keyflush();
|
|
- if (selectlist) {
|
|
+ if (h < 0 || selectlist) {
|
|
ringbell();
|
|
break;
|
|
}
|