diff --git a/src/protocol/http/http.c b/src/protocol/http/http.c index 4fa2b1153..63b0fe8ed 100644 --- a/src/protocol/http/http.c +++ b/src/protocol/http/http.c @@ -195,11 +195,11 @@ static struct option_info http_options[] = { "a standard for new textmode user agents, so that the webmasters can\n" "have just a single uniform test for these if they are e.g. pushing\n" "some lite version to them automagically.\n" - "%v in the string means ELinks version\n" - "%s in the string means system identification\n" - "%t in the string means size of the terminal\n" - "%b in the string means number of bars displayed by ELinks\n" - "Use \" \" if you don't want any User-Agent header to be sent at all.")), + "Use \" \" if you don't want any User-Agent header to be sent at all.\n" + "%v in the string means ELinks version,\n" + "%s in the string means system identification,\n" + "%t in the string means size of the terminal,\n" + "%b in the string means number of bars displayed by ELinks.")), INIT_OPT_TREE("protocol", N_("HTTPS"), diff --git a/src/protocol/rewrite/rewrite.c b/src/protocol/rewrite/rewrite.c index 17f238d63..df422ce38 100644 --- a/src/protocol/rewrite/rewrite.c +++ b/src/protocol/rewrite/rewrite.c @@ -98,10 +98,10 @@ static struct option_info uri_rewrite_options[] = { "(i.e. contains no '.', ':' or '/' characters), and does\n" "not match any defined prefixes. Set the value to \"\" to\n" "disable use of the default template rewrite rule.\n" - "%c in the template means the current URL\n" - "%s in the template means the whole string from the goto dialog\n" - "%0,%1,...,%9 mean the 1st,2nd,...,10th space-delimited part of %s\n" - "%% in the template means '%'")), + "%c in the template means the current URL,\n" + "%s in the template means the whole string from the goto dialog,\n" + "%0,%1,...,%9 mean the 1st,2nd,...,10th space-delimited part of %s,\n" + "%% in the template means '%'.")), #define INIT_OPT_DUMB_PREFIX(prefix, uri) \ INIT_OPT_STRING("protocol.rewrite.dumb", NULL, prefix, 0, uri, NULL)