ports/shells/44bsd-csh/files/patch-file.c
Cy Schubert 353ab88661 Fix file completion bug.
PR:		140557
2011-07-05 03:41:09 +00:00

40 lines
1.1 KiB
C

--- file.c.orig 2011-07-04 06:54:10.348798410 -0700
+++ file.c 2011-07-04 16:23:57.199132280 -0700
@@ -82,7 +82,7 @@
static void setup_tty __P((int));
static void back_to_col_1 __P((void));
-static void pushback __P((Char *));
+static void pushback __P((Char *, int));
static void catn __P((Char *, Char *, int));
static void copyn __P((Char *, Char *, int));
static Char filetype __P((Char *, Char *));
@@ -156,8 +156,9 @@
* Push string contents back into tty queue
*/
static void
-pushback(string)
+pushback(string, list)
Char *string;
+ int list;
{
Char *p;
struct termios tty, tty_normal;
@@ -168,6 +169,8 @@
(void) tcgetattr(SHOUT, &tty);
tty_normal = tty;
tty.c_lflag &= ~(ECHOKE | ECHO | ECHOE | ECHOK | ECHONL | ECHOPRT | ECHOCTL);
+ if (list == LIST)
+ tty.c_lflag |= ECHO;
(void) tcsetattr(SHOUT, TCSANOW, &tty);
for (p = string; (c = *p) != '\0'; p++)
@@ -660,7 +663,7 @@
should_retype = TRUE;
if (should_retype)
printprompt();
- pushback(inputline);
+ pushback(inputline, command);
if (should_retype)
retype();
}