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

tweaks: adjust a comment, and condense a fragment of code

No related merge requests found
Showing with 5 additions and 7 deletions
+5 -7
...@@ -2358,13 +2358,11 @@ int main(int argc, char **argv) ...@@ -2358,13 +2358,11 @@ int main(int argc, char **argv)
/* Initialize the pointers for the Search/Replace/Execute histories. */ /* Initialize the pointers for the Search/Replace/Execute histories. */
history_init(); history_init();
/* If we need any of the history files, verify that the user's home /* If we need history files, verify that we have a directory for them,
* directory and its .nano subdirctory exist. */ * and when not, cancel the options. */
if (ISSET(HISTORYLOG) || ISSET(POS_HISTORY)) { if ((ISSET(HISTORYLOG) || ISSET(POS_HISTORY)) && !have_statedir()) {
if (!have_statedir()) { UNSET(HISTORYLOG);
UNSET(HISTORYLOG); UNSET(POS_HISTORY);
UNSET(POS_HISTORY);
}
} }
/* If the user wants history persistence, read the relevant files. */ /* If the user wants history persistence, read the relevant files. */
......
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