nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit fed0195f2d8a734f10897425a0db70999f12eab2
parent 4bb60db078b105ba7d6e62758ca011433f6ba018
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Thu,  8 Jun 2006 02:54:20 +0000

still more wording fixes


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3638 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Msrc/nano.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/nano.c b/src/nano.c @@ -1777,7 +1777,7 @@ int main(int argc, char **argv) #endif case 'T': if (!parse_num(optarg, &tabsize) || tabsize <= 0) { - fprintf(stderr, _("Requested tab size %s invalid"), optarg); + fprintf(stderr, _("Requested tab size \"%s\" is invalid"), optarg); fprintf(stderr, "\n"); exit(1); } @@ -1833,7 +1833,7 @@ int main(int argc, char **argv) #ifndef DISABLE_WRAPJUSTIFY case 'r': if (!parse_num(optarg, &wrap_at)) { - fprintf(stderr, _("Requested fill size %s invalid"), optarg); + fprintf(stderr, _("Requested fill size \"%s\" is invalid"), optarg); fprintf(stderr, "\n"); exit(1); }