diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2020-09-28 12:53:22 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2020-09-28 12:53:22 +0000 |
commit | ff09f20da63133e64dcdc2024f78cd50ab62ed5c (patch) | |
tree | 6f5830f69847810f86f0fa7fa3953dfd2a5b474a | |
parent | Update ChangeLog (diff) | |
download | w3m-ff09f20da63133e64dcdc2024f78cd50ab62ed5c.tar.gz w3m-ff09f20da63133e64dcdc2024f78cd50ab62ed5c.zip |
Accept section "l" for w3mman
-rw-r--r-- | scripts/w3mman/w3mman.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/w3mman/w3mman.in b/scripts/w3mman/w3mman.in index 5cff68f..061cb1f 100644 --- a/scripts/w3mman/w3mman.in +++ b/scripts/w3mman/w3mman.in @@ -31,7 +31,7 @@ while (@ARGV) { $query .= "&pwd=" . &form_encode($ENV{'PWD'}); } elsif (/^-/) { &usage(); - } elsif (/^\d/ || $_ eq 'n') { + } elsif (/^\d/ || $_ eq 'n' || $_ eq 'l') { if ( $query eq "" ) { $query = "?quit=ok"; } $query .= "§ion=" . &form_encode($_); } else { |