diff options
-rw-r--r-- | doc/dillo.1.in | 2 | ||||
-rw-r--r-- | src/dillo.cc | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/dillo.1.in b/doc/dillo.1.in index a5228b63..360d8320 100644 --- a/doc/dillo.1.in +++ b/doc/dillo.1.in @@ -44,7 +44,7 @@ Set initial window position where \fIGEO\fR is Display this help text and exit. .TP \fB\-l\fR, \fB\-\-local\fR -Don't load images or stylesheets for these URL(s). +Don't load images or stylesheets, or follow redirections, for these URL(s). .TP \fB\-v\fR, \fB\-\-version\fR Display version info and exit. diff --git a/src/dillo.cc b/src/dillo.cc index d73b855a..ee2f4da4 100644 --- a/src/dillo.cc +++ b/src/dillo.cc @@ -90,8 +90,8 @@ static const CLI_options Options[] = { {"-h", "--help", 0, DILLO_CLI_HELP, " -h, --help Display this help text and exit."}, {"-l", "--local", 0, DILLO_CLI_LOCAL, - " -l, --local Don't load images or stylesheets for these " - "URL(s)."}, + " -l, --local Don't load images or stylesheets, or follow\n" + " redirections, for these FILEs or URLs."}, {"-v", "--version", 0, DILLO_CLI_VERSION, " -v, --version Display version info and exit."}, {"-x", "--xid", 1, DILLO_CLI_XID, |