diff options
author | corvid <corvid@lavabit.com> | 2012-09-24 21:24:47 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2012-09-24 21:24:47 +0000 |
commit | c18892b7258ae164fb3402ed8e96519ef107daee (patch) | |
tree | f6135a1a495c26ce82020632d6ec5f52a756ec63 | |
parent | d471dfd4da734cae7917c9744018806c18ddb39c (diff) |
mention that --local doesn't load stylesheets
-rw-r--r-- | doc/dillo.1 | 4 | ||||
-rw-r--r-- | src/dillo.cc | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/doc/dillo.1 b/doc/dillo.1 index 18c932a2..2efc6b4a 100644 --- a/doc/dillo.1 +++ b/doc/dillo.1 @@ -1,4 +1,4 @@ -.TH dillo 1 "June 12, 2012" "" "USER COMMANDS" +.TH dillo 1 "September 24, 2012" "" "USER COMMANDS" .SH NAME dillo \- web browser .SH SYNOPSIS @@ -36,7 +36,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 for these URL(s). +Don't load images or stylesheets 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 7552676d..2ac96810 100644 --- a/src/dillo.cc +++ b/src/dillo.cc @@ -82,7 +82,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 for these URL(s)."}, + " -l, --local Don't load images or stylesheets for these " + "URL(s)."}, {"-v", "--version", 0, DILLO_CLI_VERSION, " -v, --version Display version info and exit."}, {"-x", "--xid", 1, DILLO_CLI_XID, |