freebsd-ports/shells/fd/files/patch-input.c
Akinori MUSHA f0b978d01b Apply fixes against recently reported bugs.
[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.
2004-05-25 05:17:40 +00:00

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;
}