nano.h, proto.h, and UPGRADE; removal of safe_regexec(). (DLR)
- Minor wording fixes to various messages. Changes to
load_history(), shortcut_init(), toggle_init(), usage(),
- do_suspend(), do_input(), do_rcfile_error(), nano.1,
- nano.texi, and nanorc.sample.in. (Benno Schulenberg, minor
- tweaks by DLR)
+ do_suspend(), do_input(), rcfile_error(), parse_argument(),
+ parse_rcfile(), nano.1, nano.texi, and nanorc.sample.in.
+ (Benno Schulenberg, minor tweaks by DLR and Nick Warne)
- browser.c:
do_browser()
- Reference NANO_GOTODIR_(ALT|F)?KEY instead of
ptr = NULL;
else
*ptr++ = '\0';
- rcfile_error(N_("Argument '%s' has unterminated \""), ptr_save);
+ rcfile_error(N_("Argument '%s' has an unterminated \""), ptr_save);
} else {
*last_quote = '\0';
ptr = last_quote + 1;
if (strcasecmp(rcopts[i].name, "fill") == 0) {
if (!parse_num(option, &wrap_at)) {
rcfile_error(
- N_("Requested fill size \"%s\" invalid"),
+ N_("Requested fill size \"%s\" is invalid"),
option);
wrap_at = -CHARS_FROM_EOL;
} else
if (!parse_num(option, &tabsize) ||
tabsize <= 0) {
rcfile_error(
- N_("Requested tab size \"%s\" invalid"),
+ N_("Requested tab size \"%s\" is invalid"),
option);
tabsize = -1;
} else