Commit 4bb60db0 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

more minor wording fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3637 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 6 additions and 6 deletions
+6 -6
...@@ -145,9 +145,9 @@ CVS code - ...@@ -145,9 +145,9 @@ CVS code -
nano.h, proto.h, and UPGRADE; removal of safe_regexec(). (DLR) nano.h, proto.h, and UPGRADE; removal of safe_regexec(). (DLR)
- Minor wording fixes to various messages. Changes to - Minor wording fixes to various messages. Changes to
load_history(), shortcut_init(), toggle_init(), usage(), load_history(), shortcut_init(), toggle_init(), usage(),
do_suspend(), do_input(), do_rcfile_error(), nano.1, do_suspend(), do_input(), rcfile_error(), parse_argument(),
nano.texi, and nanorc.sample.in. (Benno Schulenberg, minor parse_rcfile(), nano.1, nano.texi, and nanorc.sample.in.
tweaks by DLR) (Benno Schulenberg, minor tweaks by DLR and Nick Warne)
- browser.c: - browser.c:
do_browser() do_browser()
- Reference NANO_GOTODIR_(ALT|F)?KEY instead of - Reference NANO_GOTODIR_(ALT|F)?KEY instead of
......
...@@ -171,7 +171,7 @@ char *parse_argument(char *ptr) ...@@ -171,7 +171,7 @@ char *parse_argument(char *ptr)
ptr = NULL; ptr = NULL;
else else
*ptr++ = '\0'; *ptr++ = '\0';
rcfile_error(N_("Argument '%s' has unterminated \""), ptr_save); rcfile_error(N_("Argument '%s' has an unterminated \""), ptr_save);
} else { } else {
*last_quote = '\0'; *last_quote = '\0';
ptr = last_quote + 1; ptr = last_quote + 1;
...@@ -736,7 +736,7 @@ void parse_rcfile(FILE *rcstream ...@@ -736,7 +736,7 @@ void parse_rcfile(FILE *rcstream
if (strcasecmp(rcopts[i].name, "fill") == 0) { if (strcasecmp(rcopts[i].name, "fill") == 0) {
if (!parse_num(option, &wrap_at)) { if (!parse_num(option, &wrap_at)) {
rcfile_error( rcfile_error(
N_("Requested fill size \"%s\" invalid"), N_("Requested fill size \"%s\" is invalid"),
option); option);
wrap_at = -CHARS_FROM_EOL; wrap_at = -CHARS_FROM_EOL;
} else } else
...@@ -811,7 +811,7 @@ void parse_rcfile(FILE *rcstream ...@@ -811,7 +811,7 @@ void parse_rcfile(FILE *rcstream
if (!parse_num(option, &tabsize) || if (!parse_num(option, &tabsize) ||
tabsize <= 0) { tabsize <= 0) {
rcfile_error( rcfile_error(
N_("Requested tab size \"%s\" invalid"), N_("Requested tab size \"%s\" is invalid"),
option); option);
tabsize = -1; tabsize = -1;
} else } else
......
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