nothing can break out of do_prompt(), not a SIGWINCH either.
* src/prompt.c (get_prompt_string): Delete code that is dead now.
* src/prompt.c (get_prompt_string): Elide an unneeded variable.
+ * src/browser.c (do_browser): Delete unneeded blanking of a variable.
2016-01-20 Benno Schulenberg <bensberg@justemail.net>
* src/files.c (open_buffer): Readjust the indentation and a comment.
/* If the directory begins with a newline (i.e. an
* encoded null), treat it as though it's blank. */
if (i < 0 || *answer == '\n') {
- /* We canceled. Indicate that on the statusbar, and
- * blank out ans, since we're done with it. */
statusbar(_("Cancelled"));
- ans = mallocstrcpy(ans, "");
continue;
} else if (i != 0) {
/* Put back the "Go to Directory" key and save
continue;
}
- /* We have a directory. Blank out ans, since we're done
- * with it. */
- ans = mallocstrcpy(ans, "");
-
- /* Convert newlines to nulls, just before we go to the
- * directory. */
+ /* Convert newlines to nulls in the directory name. */
sunder(answer);
align(&answer);