diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2013-10-14 00:13:37 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2013-10-14 00:13:37 -0400 |
commit | ed46d3cc0121dbce87345bbbb119cd4080c247c7 (patch) | |
tree | c34bdd611f309476e5c1c1d7b72bf43236b522fb /src/LYLocal.c | |
parent | f1977d62c94d74a72d1c7a4abbbecdec21e3980e (diff) | |
download | lynx-snapshots-ed46d3cc0121dbce87345bbbb119cd4080c247c7.tar.gz |
snapshot of project "lynx", label v2-8-8dev_16q
Diffstat (limited to 'src/LYLocal.c')
-rw-r--r-- | src/LYLocal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/LYLocal.c b/src/LYLocal.c index 78c35e03..4ee4325b 100644 --- a/src/LYLocal.c +++ b/src/LYLocal.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYLocal.c,v 1.125 2013/05/03 08:43:42 tom Exp $ + * $LynxId: LYLocal.c,v 1.126 2013/10/12 14:51:18 tom Exp $ * * Routines to manipulate the local filesystem. * Written by: Rick Mallett, Carleton University @@ -807,7 +807,7 @@ static int modify_tagged(char *testpath) _statusline(gettext("Enter new location for tagged items: ")); BStrCopy0(given_target, ""); - (void) LYgetBString(&given_target, VISIBLE, 0, NORECALL); + (void) LYgetBString(&given_target, FALSE, 0, NORECALL); if (!isBEmpty(given_target)) { /* * Replace ~/ references to the home directory. @@ -2210,7 +2210,7 @@ static int get_filename(const char *prompt, _statusline(prompt); - (void) LYgetBString(&buf, VISIBLE, 0, NORECALL); + (void) LYgetBString(&buf, FALSE, 0, NORECALL); if (strstr(buf->str, "../") != NULL) { HTAlert(gettext("Illegal filename; request ignored.")); return FALSE; |