Commit fc36ff72 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

options: retire 'set backwards' -- it's still recognized but a no-op

parent 3f735d22
Showing with 5 additions and 5 deletions
+5 -5
...@@ -703,7 +703,8 @@ with @code{set backup} or @option{--backup} or @option{-B}. ...@@ -703,7 +703,8 @@ with @code{set backup} or @option{--backup} or @option{-B}.
The uniquely numbered files are stored in the specified directory. The uniquely numbered files are stored in the specified directory.
@item set backwards @item set backwards
Do backwards searches by default. Obsolete option. Recognized but ignored. @code{^Q} is available to
start a backward search.
@item set boldtext @item set boldtext
Use bold instead of reverse video for the title bar, status bar, key combos, Use bold instead of reverse video for the title bar, status bar, key combos,
......
...@@ -74,7 +74,8 @@ with \fBset backup\fR or \fB\-\-backup\fR or \fB\-B\fR. ...@@ -74,7 +74,8 @@ with \fBset backup\fR or \fB\-\-backup\fR or \fB\-B\fR.
The uniquely numbered files are stored in the specified \fIdirectory\fR. The uniquely numbered files are stored in the specified \fIdirectory\fR.
.TP .TP
.B set backwards .B set backwards
Do backwards searches by default. Obsolete option. Recognized but ignored. \fB^Q\fR is available to
start a backward search.
.TP .TP
.B set boldtext .B set boldtext
Use bold instead of reverse video for the title bar, status bar, key combos, Use bold instead of reverse video for the title bar, status bar, key combos,
......
...@@ -33,9 +33,6 @@ ...@@ -33,9 +33,6 @@
## The directory to put unique backup files in. ## The directory to put unique backup files in.
# set backupdir "" # set backupdir ""
## Do backwards searches by default.
# set backwards
## Use bold text instead of reverse video text. ## Use bold text instead of reverse video text.
# set boldtext # set boldtext
......
...@@ -2455,6 +2455,7 @@ int main(int argc, char **argv) ...@@ -2455,6 +2455,7 @@ int main(int argc, char **argv)
/* Initialize the search string. */ /* Initialize the search string. */
last_search = mallocstrcpy(NULL, ""); last_search = mallocstrcpy(NULL, "");
UNSET(BACKWARDS_SEARCH);
/* If tabsize wasn't specified, set its default value. */ /* If tabsize wasn't specified, set its default value. */
if (tabsize == -1) if (tabsize == -1)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment