- files.c:
is_dir()
- Rename parameter ret to retval, for consistency. (DLR)
+- prompt.c:
+ get_prompt_string()
+ - Use a do/while loop instead of a while loop, for consistency.
+ (DLR)
- utils.c:
ngetdelim()
- Do sanity checks manually again instead of in an assert, and
#endif
)
{
- int kbinput;
+ int kbinput = ERR;
bool meta_key, func_key, s_or_t, ran_func, finished;
size_t curranswer_len;
#ifndef DISABLE_TABCOMP
* to files not specified on the command line. In this case,
* disable all keys that would change the text if the filename isn't
* blank and we're at the "Write File" prompt. */
- while ((kbinput = do_statusbar_input(&meta_key, &func_key,
- &s_or_t, &ran_func, &finished, TRUE)) != NANO_CANCEL_KEY &&
- kbinput != NANO_ENTER_KEY) {
-
+ do {
assert(statusbar_x <= strlen(answer));
#ifndef DISABLE_TABCOMP
#endif
reset_statusbar_cursor();
- }
+ } while ((kbinput = do_statusbar_input(&meta_key, &func_key,
+ &s_or_t, &ran_func, &finished, TRUE)) != NANO_CANCEL_KEY &&
+ kbinput != NANO_ENTER_KEY);
#ifndef NANO_TINY
/* Set the current position in the history list to the bottom and