From 125cfd090f2af4935b7cbe526d98acec194a0b51 Mon Sep 17 00:00:00 2001 From: delphij Date: Mon, 13 May 2013 06:52:46 +0000 Subject: MFV: less v458. MFC after: 2 weeks --- contrib/less/option.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'contrib/less/option.c') diff --git a/contrib/less/option.c b/contrib/less/option.c index cd45281..2c26dc6 100644 --- a/contrib/less/option.c +++ b/contrib/less/option.c @@ -30,6 +30,7 @@ extern int screen_trashed; extern int less_is_more; extern int quit_at_eof; extern char *every_first_cmd; +extern int opt_use_backslash; /* * Return a printable description of an option. @@ -578,7 +579,7 @@ optstring(s, p_str, printopt, validchars) for (p = s; *p != '\0'; p++) { - if (*p == '\\' && p[1] != '\0') + if (opt_use_backslash && *p == '\\' && p[1] != '\0') { /* Take next char literally. */ ++p; -- cgit v1.1